aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.h
diff options
context:
space:
mode:
authorGerd Möllmann2024-06-27 14:28:45 +0200
committerGerd Möllmann2024-06-27 14:29:46 +0200
commitca09ebb5094755b1163007ef75dca4ddaa0101e8 (patch)
treee0bbc8364a3e1f611b01d9a9222b5261cd075e4c /src/comp.h
parente44eb88589107b801fb718df78c2cbe9b002a5a8 (diff)
downloademacs-ca09ebb5094755b1163007ef75dca4ddaa0101e8.tar.gz
emacs-ca09ebb5094755b1163007ef75dca4ddaa0101e8.zip
Fix last change
Diffstat (limited to 'src/comp.h')
-rw-r--r--src/comp.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/comp.h b/src/comp.h
index d9743c3d8c5..f560cf6954b 100644
--- a/src/comp.h
+++ b/src/comp.h
@@ -21,7 +21,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
21#define COMP_H 21#define COMP_H
22 22
23#include <dynlib.h> 23#include <dynlib.h>
24#include "lisp.h" 24# include "lisp.h"
25
26# ifdef HAVE_MPS
27struct igc_root_list;
28# endif
25 29
26struct Lisp_Native_Comp_Unit 30struct Lisp_Native_Comp_Unit
27{ 31{
@@ -54,10 +58,10 @@ struct Lisp_Native_Comp_Unit
54 Lisp_Object *data_eph_relocs; 58 Lisp_Object *data_eph_relocs;
55 size_t n_data_eph_relocs; 59 size_t n_data_eph_relocs;
56 Lisp_Object *comp_unit; 60 Lisp_Object *comp_unit;
57 void *data_relocs_root; 61 struct igc_root_list *data_relocs_root;
58 void *data_imp_relocs_root; 62 struct igc_root_list *data_imp_relocs_root;
59 void *data_eph_relocs_root; 63 struct igc_root_list *data_eph_relocs_root;
60 void *comp_unit_root; 64 struct igc_root_list *comp_unit_root;
61# endif 65# endif
62 bool loaded_once; 66 bool loaded_once;
63 bool load_ongoing; 67 bool load_ongoing;