diff --git a/backend/src/backend/gen_insn_selection.cpp b/backend/src/backend/gen_insn_selection.cpp
index 2b89c7f..06767d4 100644
--- a/backend/src/backend/gen_insn_selection.cpp
+++ b/backend/src/backend/gen_insn_selection.cpp
@@ -1219,7 +1219,7 @@ namespace gbe
     }
     // FIXME, this longjmp check is too hacky. We need to support instruction
     // insertion at code emission stage in the future.
-    insn->extra.longjmp = ctx.getFunction().getDistance(start, end) > 3000;
+    insn->extra.longjmp = 1; //ctx.getFunction().getDistance(start, end) > 3000;
     return insn->extra.longjmp ? 2 : 1;
   }
 
