aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2024-05-24 08:37:41 +0200
committerAndrea Corallo2024-05-24 08:38:44 +0200
commite650a04dc415467806b77d4b3801f9e6eeb9dfaf (patch)
tree6f72e75e9bfd7c69da2cc9da14f39ceff197abac /src
parent9d3fb195af40f26a3751c368af55677667af3eba (diff)
downloademacs-e650a04dc415467806b77d4b3801f9e6eeb9dfaf.tar.gz
emacs-e650a04dc415467806b77d4b3801f9e6eeb9dfaf.zip
* src/comp.c (check_comp_unit_relocs): Remove unneccesary double access.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index e8945df63ff..545a8046377 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -5302,7 +5302,7 @@ check_comp_unit_relocs (struct Lisp_Native_Comp_Unit *comp_u)
5302 if (NILP (Fgethash (x, comp_u->lambda_gc_guard_h, Qnil))) 5302 if (NILP (Fgethash (x, comp_u->lambda_gc_guard_h, Qnil)))
5303 return false; 5303 return false;
5304 } 5304 }
5305 else if (!EQ (data_imp_relocs[i], AREF (comp_u->data_impure_vec, i))) 5305 else if (!EQ (x, AREF (comp_u->data_impure_vec, i)))
5306 return false; 5306 return false;
5307 } 5307 }
5308 return true; 5308 return true;