* src/comp.c (emit_lisp_obj_rval): Make use of NILP.
This commit is contained in:
parent
2d4d6f1a3f
commit
50fea24b8b
1 changed files with 1 additions and 1 deletions
|
@ -1720,7 +1720,7 @@ emit_lisp_obj_rval (Lisp_Object obj)
|
|||
emit_comment (format_string ("const lisp obj: %s",
|
||||
SSDATA (Fprin1_to_string (obj, Qnil))));
|
||||
|
||||
if (EQ (obj, Qnil))
|
||||
if (NILP (obj))
|
||||
{
|
||||
gcc_jit_rvalue *n;
|
||||
n = emit_rvalue_from_lisp_word ((Lisp_Word) iQnil);
|
||||
|
|
Loading…
Add table
Reference in a new issue