diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-09-09 15:07:41 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-09-09 15:07:41 -0400 |
commit | d6f7c0feb9492a7162c89e79c2db5798b91916ac (patch) | |
tree | 96d8b9f2c6237f9c21b32dc58026aa397125dd07 /gcc/config/netbsd.h | |
parent | 5c73e8471a6e9576853d99e68ecd94b064882a5d (diff) | |
download | gcc-d6f7c0feb9492a7162c89e79c2db5798b91916ac.tar.gz |
Add #undef for everything we define; a few were missing.
From-SVN: r8054
Diffstat (limited to 'gcc/config/netbsd.h')
-rw-r--r-- | gcc/config/netbsd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config/netbsd.h b/gcc/config/netbsd.h index caa13fe88ed..8961ca9a2ff 100644 --- a/gcc/config/netbsd.h +++ b/gcc/config/netbsd.h @@ -73,6 +73,9 @@ different pseudo-op names for these, they may be overridden in the file which includes this one. */ +#undef TYPE_ASM_OP +#undef SIZE_ASM_OP +#undef WEAK_ASM_OP #define TYPE_ASM_OP ".type" #define SIZE_ASM_OP ".size" #define WEAK_ASM_OP ".weak" @@ -83,6 +86,7 @@ is just a default. You may need to override it in your machine- specific tm.h file (depending upon the particulars of your assembler). */ +#undef TYPE_OPERAND_FMT #define TYPE_OPERAND_FMT "@%s" /* Write the extra assembler code needed to declare a function's result. @@ -102,6 +106,7 @@ Some svr4 assemblers need to also have something extra said about the function's return value. We allow for that here. */ +#undef ASM_DECLARE_FUNCTION_NAME #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \ do { \ fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \ @@ -115,6 +120,7 @@ /* Write the extra assembler code needed to declare an object properly. */ +#undef ASM_DECLARE_OBJECT_NAME #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL) \ do { \ fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \ @@ -139,6 +145,7 @@ size_directive_output was set by ASM_DECLARE_OBJECT_NAME when it was run for the same decl. */ +#undef ASM_FINISH_DECLARE_OBJECT #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP_LEVEL, AT_END) \ do { \ char *name = XSTR (XEXP (DECL_RTL (DECL), 0), 0); \ @@ -156,6 +163,7 @@ do { \ /* This is how to declare the size of a function. */ +#undef ASM_DECLARE_FUNCTION_SIZE #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL) \ do { \ if (!flag_inhibit_size_directive) \ |