* src/comp.c (check_comp_unit_relocs): Remove unneccesary double access.
This commit is contained in:
parent
9d3fb195af
commit
e650a04dc4
1 changed files with 1 additions and 1 deletions
|
@ -5302,7 +5302,7 @@ check_comp_unit_relocs (struct Lisp_Native_Comp_Unit *comp_u)
|
|||
if (NILP (Fgethash (x, comp_u->lambda_gc_guard_h, Qnil)))
|
||||
return false;
|
||||
}
|
||||
else if (!EQ (data_imp_relocs[i], AREF (comp_u->data_impure_vec, i)))
|
||||
else if (!EQ (x, AREF (comp_u->data_impure_vec, i)))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue