Merge "Enhance apf_disassembler to always print PASS/DROP labels." into main
diff --git a/v7/apf_interpreter.c b/v7/apf_interpreter.c
index 635ee3e..c014ca4 100644
--- a/v7/apf_interpreter.c
+++ b/v7/apf_interpreter.c
@@ -766,7 +766,6 @@
             u32 offs = imm;
             /* Note: this can overflow and actually decrease offs. */
             if (opcode >= LDBX_OPCODE) offs += ctx->R[1];
-            ASSERT_IN_PACKET_BOUNDS(offs);
             switch (opcode) {
               case LDB_OPCODE:
               case LDBX_OPCODE:
diff --git a/v7/apf_interpreter_source.c b/v7/apf_interpreter_source.c
index 6a70472..2596887 100644
--- a/v7/apf_interpreter_source.c
+++ b/v7/apf_interpreter_source.c
@@ -220,7 +220,6 @@
             u32 offs = imm;
             // Note: this can overflow and actually decrease offs.
             if (opcode >= LDBX_OPCODE) offs += ctx->R[1];
-            ASSERT_IN_PACKET_BOUNDS(offs);
             switch (opcode) {
               case LDB_OPCODE:
               case LDBX_OPCODE: