diff options
Diffstat (limited to 'gcc/config/d30v')
-rw-r--r-- | gcc/config/d30v/d30v.c | 5 | ||||
-rw-r--r-- | gcc/config/d30v/d30v.h | 10 |
2 files changed, 5 insertions, 10 deletions
diff --git a/gcc/config/d30v/d30v.c b/gcc/config/d30v/d30v.c index 8f8f6d20280..c63dd528c1c 100644 --- a/gcc/config/d30v/d30v.c +++ b/gcc/config/d30v/d30v.c @@ -39,6 +39,8 @@ #include "function.h" #include "toplev.h" #include "ggc.h" +#include "target.h" +#include "target-def.h" static void d30v_print_operand_memory_reference PARAMS ((FILE *, rtx)); static void d30v_build_long_insn PARAMS ((HOST_WIDE_INT, HOST_WIDE_INT, @@ -76,7 +78,10 @@ enum reg_class regno_reg_class[FIRST_PSEUDO_REGISTER]; /* Map class letter into register class */ enum reg_class reg_class_from_letter[256]; + +/* Initialize the GCC target structure. */ +struct gcc_target target = TARGET_INITIALIZER; /* Sometimes certain combinations of command options do not make sense on a particular target machine. You can define a macro diff --git a/gcc/config/d30v/d30v.h b/gcc/config/d30v/d30v.h index 3efa6d70fce..f072cfb96f8 100644 --- a/gcc/config/d30v/d30v.h +++ b/gcc/config/d30v/d30v.h @@ -5889,16 +5889,6 @@ fprintf (STREAM, "\t.word .L%d\n", VALUE) must also be defined). */ /* #define HANDLE_WEAK_PRAGMA */ -/* If defined, a C expression whose value is nonzero if IDENTIFIER with - arguments ARGS is a valid machine specific attribute for DECL. The - attributes in ATTRIBUTES have previously been assigned to DECL. */ -/* #define VALID_MACHINE_DECL_ATTRIBUTE(DECL, ATTRIBUTES, IDENTIFIER, ARGS) */ - -/* If defined, a C expression whose value is nonzero if IDENTIFIER with - arguments ARGS is a valid machine specific attribute for TYPE. The - attributes in ATTRIBUTES have previously been assigned to TYPE. */ -/* #define VALID_MACHINE_TYPE_ATTRIBUTE(TYPE, ATTRIBUTES, IDENTIFIER, ARGS) */ - /* If defined, a C expression whose value is zero if the attributes on TYPE1 and TYPE2 are incompatible, one if they are compatible, and two if they are nearly compatible (which causes a warning to be generated). */ |