summaryrefslogtreecommitdiff
path: root/gcc/config/netbsd.h
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-09-09 19:07:41 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-09-09 19:07:41 +0000
commit275f91c159e8227c84dcc961f214dddc0c7b4993 (patch)
tree96d8b9f2c6237f9c21b32dc58026aa397125dd07 /gcc/config/netbsd.h
parente1362e8c8eee8f59c6e8e87b0efe80f829907580 (diff)
downloadgcc-275f91c159e8227c84dcc961f214dddc0c7b4993.tar.gz
Add #undef for everything we define; a few were missing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8054 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/netbsd.h')
-rw-r--r--gcc/config/netbsd.h8
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) \