diff options
author | Joern Rennecke <joern.rennecke@embecosm.com> | 2013-08-26 11:04:08 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2013-08-26 12:04:08 +0100 |
commit | 4b37444e7193b7df8ab9c00532598dff98bff49d (patch) | |
tree | 547714eb3d41f5cb2f5a771f1f9d39e6955b9716 | |
parent | 8616e65ce8ddf439b2697d7d036b2bbaabb5943b (diff) | |
download | gcc-4b37444e7193b7df8ab9c00532598dff98bff49d.zip gcc-4b37444e7193b7df8ab9c00532598dff98bff49d.tar.gz gcc-4b37444e7193b7df8ab9c00532598dff98bff49d.tar.bz2 |
i386.c (x86_64_elf_select_section): Put ATTRIBUTE_UNUSED into proper place.
* config/i386/i386.c (x86_64_elf_select_section): Put ATTRIBUTE_UNUSED
into proper place.
From-SVN: r201993
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fd65e13..bd0cd83 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-08-26 Joern Rennecke <joern.rennecke@embecosm.com> + + * config/i386/i386.c (x86_64_elf_select_section): Put ATTRIBUTE_UNUSED + into proper place. + 2013-08-26 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.c (ix86_debug_options): Remove prototype. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 2e62109..d0818ad 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -4847,7 +4847,7 @@ ix86_in_large_data_p (tree exp) RELOC indicates whether forming the initial value of DECL requires link-time relocations. */ -static section * ATTRIBUTE_UNUSED +ATTRIBUTE_UNUSED static section * x86_64_elf_select_section (tree decl, int reloc, unsigned HOST_WIDE_INT align) { |