diff options
author | James Greenhalgh <james.greenhalgh@arm.com> | 2016-03-31 15:48:47 +0000 |
---|---|---|
committer | James Greenhalgh <jgreenhalgh@gcc.gnu.org> | 2016-03-31 15:48:47 +0000 |
commit | 5918459a1d0113b48496ca3fe59ebe50746ac055 (patch) | |
tree | 67dfc672a20e511d1d8d54f067e56396619dc6c8 /gcc | |
parent | b660f9ec7e8b9dbdc1bbeafc62889e596458791a (diff) | |
download | gcc-5918459a1d0113b48496ca3fe59ebe50746ac055.zip gcc-5918459a1d0113b48496ca3fe59ebe50746ac055.tar.gz gcc-5918459a1d0113b48496ca3fe59ebe50746ac055.tar.bz2 |
[Patch ARM] Delete ASM_OUTPUT_DEF and fall back to default .set directive
gcc/
* config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
From-SVN: r234638
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/linux-elf.h | 11 |
2 files changed, 4 insertions, 11 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 28ff732..0da6ea6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-03-31 James Greenhalgh <james.greenhalgh@arm.com> + + * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete. + 2016-03-31 Ilya Enkovich <enkovich.gnu@gmail.com> PR target/70442 diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h index 472141d..a94bd2d 100644 --- a/gcc/config/arm/linux-elf.h +++ b/gcc/config/arm/linux-elf.h @@ -85,17 +85,6 @@ } \ while (0) -/* This is how we tell the assembler that two symbols have the same value. */ -#define ASM_OUTPUT_DEF(FILE, NAME1, NAME2) \ - do \ - { \ - assemble_name (FILE, NAME1); \ - fputs (" = ", FILE); \ - assemble_name (FILE, NAME2); \ - fputc ('\n', FILE); \ - } \ - while (0) - #undef FPUTYPE_DEFAULT #define FPUTYPE_DEFAULT "vfp" |