Browse Source

x86/x64: More interpreter cleanups.

Mike Pall 13 years ago
parent
commit
c99439b3be
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/vm_x86.dasc

+ 6 - 6
src/vm_x86.dasc

@@ -4041,13 +4041,13 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop)
       |  movzx RD, PC_RD
       |  movzx RD, PC_RD
       |  branchPC RD
       |  branchPC RD
       |2:				// NE: Fallthrough to next instruction.
       |2:				// NE: Fallthrough to next instruction.
-      if (!LJ_HASFFI) {
-	|3:
-      }
+      |.if not FFI
+      |3:
+      |.endif
     } else {
     } else {
-      if (!LJ_HASFFI) {
-	|3:
-      }
+      |.if not FFI
+      |3:
+      |.endif
       |2:				// NE: Branch to the target.
       |2:				// NE: Branch to the target.
       |  movzx RD, PC_RD
       |  movzx RD, PC_RD
       |  branchPC RD
       |  branchPC RD