summaryrefslogtreecommitdiff
path: root/src/comp.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2022-01-25 14:36:48 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2022-01-25 14:36:48 -0500
commitf4ed3f39c979f101e523ff1073ffe364d5c44501 (patch)
treef6f5f95b9b83b59d6e185ab2f6febe40aa3c4a89 /src/comp.c
parent84276bf775d42388ebc69683d093adef7fc0ed74 (diff)
downloademacs-f4ed3f39c979f101e523ff1073ffe364d5c44501.tar.gz
emacs-f4ed3f39c979f101e523ff1073ffe364d5c44501.tar.bz2
emacs-f4ed3f39c979f101e523ff1073ffe364d5c44501.zip
* src/comp.c (emit_limple_insn): Fix another int/Lisp_Object mixup
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index 9abc5d96906..d8fe80df3a6 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -2237,9 +2237,9 @@ emit_limple_insn (Lisp_Object insn)
gcc_jit_block *target1 = retrive_block (arg[2]);
gcc_jit_block *target2 = retrive_block (arg[3]);
- if ((CALL1I (comp-cstr-imm-vld-p, arg[0])
+ if ((!NILP (CALL1I (comp-cstr-imm-vld-p, arg[0]))
&& NILP (CALL1I (comp-cstr-imm, arg[0])))
- || (CALL1I (comp-cstr-imm-vld-p, arg[1])
+ || (!NILP (CALL1I (comp-cstr-imm-vld-p, arg[1]))
&& NILP (CALL1I (comp-cstr-imm, arg[1]))))
emit_cond_jump (emit_BASE_EQ (a, b), target1, target2);
else