aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1996-05-10 01:38:01 +0000
committerDoug Evans <dje@gnu.org>1996-05-10 01:38:01 +0000
commit98203e26adce2dda379c67f150a627582ed0b7c9 (patch)
treedc8d61e7d3772f348a6c56a402f5bc282c08a261 /gcc
parent6303b9ba980b0d6a826769c0fd30e10ad8071b26 (diff)
downloadgcc-98203e26adce2dda379c67f150a627582ed0b7c9.zip
gcc-98203e26adce2dda379c67f150a627582ed0b7c9.tar.gz
gcc-98203e26adce2dda379c67f150a627582ed0b7c9.tar.bz2
(ASM_DECLARE_{FUNCTION,OBJECT}_NAME): Remove bytecode support.
From-SVN: r11962
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/arm/aof.h36
1 files changed, 13 insertions, 23 deletions
diff --git a/gcc/config/arm/aof.h b/gcc/config/arm/aof.h
index 3aec603..ab9093d 100644
--- a/gcc/config/arm/aof.h
+++ b/gcc/config/arm/aof.h
@@ -308,36 +308,26 @@ do { \
fputs ("\n", STREAM); \
} while (0)
-#define ASM_DECLARE_FUNCTION_NAME(STREAM,NAME,DECL) \
-{ \
- if (output_bytecode) \
- BC_OUTPUT_LABEL (STREAM, NAME); \
- else \
- { \
- ASM_OUTPUT_LABEL (STREAM, NAME); \
- if (! TREE_PUBLIC (DECL)) \
- { \
- fputs ("\tKEEP ", STREAM); \
- ASM_OUTPUT_LABEL (STREAM, NAME); \
- } \
- aof_delete_import ((NAME)); \
- } \
+#define ASM_DECLARE_FUNCTION_NAME(STREAM,NAME,DECL) \
+{ \
+ ASM_OUTPUT_LABEL (STREAM, NAME); \
+ if (! TREE_PUBLIC (DECL)) \
+ { \
+ fputs ("\tKEEP ", STREAM); \
+ ASM_OUTPUT_LABEL (STREAM, NAME); \
+ } \
+ aof_delete_import ((NAME)); \
}
#define ASM_DECLARE_OBJECT_NAME(STREAM,NAME,DECL) \
{ \
- if (output_bytecode) \
- BC_OUTPUT_LABEL (STREAM, NAME); \
- else \
+ ASM_OUTPUT_LABEL (STREAM, NAME); \
+ if (! TREE_PUBLIC (DECL)) \
{ \
+ fputs ("\tKEEP ", STREAM); \
ASM_OUTPUT_LABEL (STREAM, NAME); \
- if (! TREE_PUBLIC (DECL)) \
- { \
- fputs ("\tKEEP ", STREAM); \
- ASM_OUTPUT_LABEL (STREAM, NAME); \
- } \
- aof_delete_import ((NAME)); \
} \
+ aof_delete_import ((NAME)); \
}
#define ASM_OUTPUT_EXTERNAL(STREAM,DECL,NAME) \