aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/ld-insn.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-01 19:29:55 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-03 18:47:40 +0200
commitad8464f799a4c96c7ab8bdfec3f95846cf54f9b0 (patch)
tree19f1d5a78e9872e685ca3fe5471719b4db66c931 /sim/ppc/ld-insn.h
parent3c8ea5be24ecc76600b6cea36240449a84c0fc22 (diff)
downloadfsf-binutils-gdb-ad8464f799a4c96c7ab8bdfec3f95846cf54f9b0.zip
fsf-binutils-gdb-ad8464f799a4c96c7ab8bdfec3f95846cf54f9b0.tar.gz
fsf-binutils-gdb-ad8464f799a4c96c7ab8bdfec3f95846cf54f9b0.tar.bz2
sim/ppc: Fix linker error with -fno-common
GCC 10 enables -fno-common by default. This resulted in a multiple definition linker error since global variables were declared and defined in a header file: ld: ld-insn.o:sim/ppc/ld-insn.h:221: multiple definition of `max_model_fields_len'; igen.o:sim/ppc/ld-insn.h:221: first defined here sim/ppc * ld-insn.h (last_model, last_model_data, last_model_function, last_model_internal, last_model_macro, last_model_static): Delete. (max_model_fields_len, model_data, model_functions, model_internal, model_macros, model_static, models): Declare, but do not define. * ld-insn.c (last_model, last_model_data, last_model_function, last_model_internal, last_model_macro, last_model_static, max_model_fields_len, model_data, model_functions, model_internal, model_macros, model_static, models): Define.
Diffstat (limited to 'sim/ppc/ld-insn.h')
-rw-r--r--sim/ppc/ld-insn.h24
1 files changed, 7 insertions, 17 deletions
diff --git a/sim/ppc/ld-insn.h b/sim/ppc/ld-insn.h
index 88318ff..52baeaa 100644
--- a/sim/ppc/ld-insn.h
+++ b/sim/ppc/ld-insn.h
@@ -200,25 +200,15 @@ extern insn_table *load_insn_table
table_include *includes,
cache_table **cache_rules);
-model *models;
-model *last_model;
+extern model *models;
-insn *model_macros;
-insn *last_model_macro;
+extern insn *model_macros;
+extern insn *model_functions;
+extern insn *model_internal;
+extern insn *model_static;
+extern insn *model_data;
-insn *model_functions;
-insn *last_model_function;
-
-insn *model_internal;
-insn *last_model_internal;
-
-insn *model_static;
-insn *last_model_static;
-
-insn *model_data;
-insn *last_model_data;
-
-int max_model_fields_len;
+extern int max_model_fields_len;
extern void insn_table_insert_insn
(insn_table *table,