diff options
| author | Andrea Corallo | 2020-09-11 14:57:11 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-09-11 15:04:34 +0200 |
| commit | c55884d72a4ea806a97c9925d6f85adcca89a3bd (patch) | |
| tree | a9ac8c53d30eba6e6b102d4fef90c7c1e97bba8b /src | |
| parent | ff593d934aec6d8e7b211d7fe2ff7fc8f92ad42b (diff) | |
| download | emacs-c55884d72a4ea806a97c9925d6f85adcca89a3bd.tar.gz emacs-c55884d72a4ea806a97c9925d6f85adcca89a3bd.zip | |
* src/comp.c (emit_static_object): Make use of ARRAYELTS.
Diffstat (limited to 'src')
| -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 1ef4f3054b1..b3640b5e378 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -2549,7 +2549,7 @@ emit_static_object (const char *name, Lisp_Object obj) | |||
| 2549 | gcc_jit_context_new_struct_type (comp.ctxt, | 2549 | gcc_jit_context_new_struct_type (comp.ctxt, |
| 2550 | NULL, | 2550 | NULL, |
| 2551 | format_string ("%s_struct", name), | 2551 | format_string ("%s_struct", name), |
| 2552 | 2, fields)); | 2552 | ARRAYELTS (fields), fields)); |
| 2553 | 2553 | ||
| 2554 | gcc_jit_lvalue *data_struct = | 2554 | gcc_jit_lvalue *data_struct = |
| 2555 | gcc_jit_context_new_global (comp.ctxt, | 2555 | gcc_jit_context_new_global (comp.ctxt, |