diff options
| author | Andrea Corallo | 2024-05-24 08:37:41 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2024-05-24 08:38:44 +0200 |
| commit | e650a04dc415467806b77d4b3801f9e6eeb9dfaf (patch) | |
| tree | 6f72e75e9bfd7c69da2cc9da14f39ceff197abac /src/comp.c | |
| parent | 9d3fb195af40f26a3751c368af55677667af3eba (diff) | |
| download | emacs-e650a04dc415467806b77d4b3801f9e6eeb9dfaf.tar.gz emacs-e650a04dc415467806b77d4b3801f9e6eeb9dfaf.zip | |
* src/comp.c (check_comp_unit_relocs): Remove unneccesary double access.
Diffstat (limited to 'src/comp.c')
| -rw-r--r-- | src/comp.c | 2 |
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; |