aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/comp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index 166c75bea0d..ee3c15a2f67 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -2038,7 +2038,7 @@ emit_limple_insn (Lisp_Object insn)
2038 gcc_jit_block *target1 = retrive_block (arg[2]); 2038 gcc_jit_block *target1 = retrive_block (arg[2]);
2039 gcc_jit_block *target2 = retrive_block (arg[3]); 2039 gcc_jit_block *target2 = retrive_block (arg[3]);
2040 2040
2041 emit_cond_jump (emit_EQ (a, b), target2, target1); 2041 emit_cond_jump (emit_EQ (a, b), target1, target2);
2042 } 2042 }
2043 else if (EQ (op, Qcond_jump_narg_leq)) 2043 else if (EQ (op, Qcond_jump_narg_leq))
2044 { 2044 {
@@ -2060,7 +2060,7 @@ emit_limple_insn (Lisp_Object insn)
2060 GCC_JIT_COMPARISON_LE, 2060 GCC_JIT_COMPARISON_LE,
2061 gcc_jit_lvalue_as_rvalue (nargs), 2061 gcc_jit_lvalue_as_rvalue (nargs),
2062 n); 2062 n);
2063 emit_cond_jump (test, target2, target1); 2063 emit_cond_jump (test, target1, target2);
2064 } 2064 }
2065 else if (EQ (op, Qphi) || EQ (op, Qassume)) 2065 else if (EQ (op, Qphi) || EQ (op, Qassume))
2066 { 2066 {