diff options
author | Doug Evans <dje@gnu.org> | 1996-05-10 01:38:01 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-10 01:38:01 +0000 |
commit | 98203e26adce2dda379c67f150a627582ed0b7c9 (patch) | |
tree | dc8d61e7d3772f348a6c56a402f5bc282c08a261 | |
parent | 6303b9ba980b0d6a826769c0fd30e10ad8071b26 (diff) | |
download | gcc-98203e26adce2dda379c67f150a627582ed0b7c9.zip gcc-98203e26adce2dda379c67f150a627582ed0b7c9.tar.gz gcc-98203e26adce2dda379c67f150a627582ed0b7c9.tar.bz2 |
(ASM_DECLARE_{FUNCTION,OBJECT}_NAME): Remove bytecode support.
From-SVN: r11962
-rw-r--r-- | gcc/config/arm/aof.h | 36 |
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) \ |