projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d3fb19
)
* src/comp.c (check_comp_unit_relocs): Remove unneccesary double access.
author
Andrea Corallo
<acorallo@gnu.org>
Fri, 24 May 2024 06:37:41 +0000
(08:37 +0200)
committer
Andrea Corallo
<acorallo@gnu.org>
Fri, 24 May 2024 06:38:44 +0000
(08:38 +0200)
src/comp.c
patch
|
blob
|
history
diff --git
a/src/comp.c
b/src/comp.c
index e8945df63ffefb5e480f2b35bddf744d95af4797..545a8046377e7ede1ea13b6ac6cbba4153645e39 100644
(file)
--- a/
src/comp.c
+++ b/
src/comp.c
@@
-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;