From 98203e26adce2dda379c67f150a627582ed0b7c9 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 10 May 1996 01:38:01 +0000 Subject: [PATCH] (ASM_DECLARE_{FUNCTION,OBJECT}_NAME): Remove bytecode support. From-SVN: r11962 --- gcc/config/arm/aof.h | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) 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) \ -- 2.30.2