From: ebotcazou Date: Mon, 6 Dec 2010 19:11:02 +0000 (+0000) Subject: * config/sparc/sol2.h (PUSHSECTION_FORMAT): Redefine unconditionally. X-Git-Tag: upstream/4.9.2~24351 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6759e4f30a4833dd25da6d4fb950b751db0e62b;p=platform%2Fupstream%2Flinaro-gcc.git * config/sparc/sol2.h (PUSHSECTION_FORMAT): Redefine unconditionally. * config/sparc/sol2-gas.h (PUSHSECTION_FORMAT): Redefine. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167511 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0eb96a6..8fc47bb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-12-06 Eric Botcazou + + * config/sparc/sol2.h (PUSHSECTION_FORMAT): Redefine unconditionally. + * config/sparc/sol2-gas.h (PUSHSECTION_FORMAT): Redefine. + 2010-12-06 Joern Rennecke PR target/46735 diff --git a/gcc/config/sparc/sol2-gas.h b/gcc/config/sparc/sol2-gas.h index 4bc2cb4..d83e7b9 100644 --- a/gcc/config/sparc/sol2-gas.h +++ b/gcc/config/sparc/sol2-gas.h @@ -40,3 +40,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see /* Use default ELF section syntax. */ #undef TARGET_ASM_NAMED_SECTION #define TARGET_ASM_NAMED_SECTION default_elf_asm_named_section + +/* And standard pushsection syntax. While GNU as supports the non-standard + variant too, we prefer the former. */ +#undef PUSHSECTION_FORMAT +#define PUSHSECTION_FORMAT "\t.pushsection\t%s\n" diff --git a/gcc/config/sparc/sol2.h b/gcc/config/sparc/sol2.h index 1128662..c370ea0 100644 --- a/gcc/config/sparc/sol2.h +++ b/gcc/config/sparc/sol2.h @@ -188,12 +188,9 @@ along with GCC; see the file COPYING3. If not see #undef TARGET_ASM_NAMED_SECTION #define TARGET_ASM_NAMED_SECTION sparc_solaris_elf_asm_named_section -/* Solaris/SPARC as uses a non-standard .section/.pushsection syntax. - While gas supports it, too, we prefer the standard variant. */ -#ifndef USE_GAS +/* And SPARC non-standard pushsection syntax. */ #undef PUSHSECTION_FORMAT -#define PUSHSECTION_FORMAT "\t.pushsection\t\"%s\"\n" -#endif +#define PUSHSECTION_FORMAT "\t.pushsection\t\"%s\"\n" /* Static stack checking is supported by means of probes. */ #define STACK_CHECK_STATIC_BUILTIN 1