From: Doug Evans Date: Fri, 10 May 1996 01:38:01 +0000 (+0000) Subject: (ASM_DECLARE_{FUNCTION,OBJECT}_NAME): Remove bytecode support. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98203e26adce2dda379c67f150a627582ed0b7c9;p=gcc.git (ASM_DECLARE_{FUNCTION,OBJECT}_NAME): Remove bytecode support. From-SVN: r11962 --- diff --git a/gcc/config/arm/aof.h b/gcc/config/arm/aof.h index 3aec6030282..ab9093d068c 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) \