diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-20 10:18:08 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-20 10:18:08 +0000 |
commit | 2c07aa0a5fac85688b55e7ab6e704ff3f5b2c7b0 (patch) | |
tree | 86c9cfaa3b8f55c5cbf38718712c004b62913340 /gcc/config/arm/arm.h | |
parent | 0bbf0fd8ca6ab6287bb19ac594307c6457d38fe5 (diff) | |
download | gcc-2c07aa0a5fac85688b55e7ab6e704ff3f5b2c7b0.tar.gz |
* config/arm/arm.h (EMIT_EABI_ATTRIBUTE): Remove.
* config/arm/arm.c: Do not include c-pragma.h.
(arm_emit_eabi_attribute): New function based on EMIT_EABI_ATTRIBUTE.
(arm_file_start): Replace uses of EMIT_EABI_ATTRIBUTE with calls
to arm_emit_eabi_attribute.
* arm-c.c: Do not include output.h.
(arm_output_c_attributes): Replace use of EMIT_EABI_ATTRIBUTE with a
call to arm_emit_eabi_attribute.
* config/arm/arm-protos.h (arm_emit_eabi_attribute): Prototype it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188823 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm/arm.h')
-rw-r--r-- | gcc/config/arm/arm.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index c51bce94518..27f0f3eff1e 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -2191,21 +2191,6 @@ extern int making_const_table; " %{mcpu=generic-*:-march=%*;" \ " :%{mcpu=*:-mcpu=%*} %{march=*:-march=%*}}" -/* This macro is used to emit an EABI tag and its associated value. - We emit the numerical value of the tag in case the assembler does not - support textual tags. (Eg gas prior to 2.20). If requested we include - the tag name in a comment so that anyone reading the assembler output - will know which tag is being set. */ -#define EMIT_EABI_ATTRIBUTE(NAME,NUM,VAL) \ - do \ - { \ - asm_fprintf (asm_out_file, "\t.eabi_attribute %d, %d", NUM, VAL); \ - if (flag_verbose_asm || flag_debug_asm) \ - asm_fprintf (asm_out_file, "\t%s " #NAME, ASM_COMMENT_START); \ - asm_fprintf (asm_out_file, "\n"); \ - } \ - while (0) - /* -mcpu=native handling only makes sense with compiler running on an ARM chip. */ #if defined(__arm__) |