diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-30 09:26:21 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-30 09:26:21 +0000 |
commit | a602740a1cd05d6e8b3610cf94f22d3e212ec425 (patch) | |
tree | 8515fd046813cc90ae619e11c467f19cbd84522d /gcc/config.in | |
parent | 8b40c28eb2dcd0d8bceab9ea92be02effda14309 (diff) | |
download | gcc-a602740a1cd05d6e8b3610cf94f22d3e212ec425.tar.gz |
Properly set progbits/nobits for Solaris/SPARC as
* configure.ac (HAVE_AS_SPARC_NOBITS): New test.
* configure: Regenerate.
* config.in: Regenerate.
* config/sparc/sparc.c (sparc_solaris_elf_asm_named_section): Emit
#nobits/#progbits if supported.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195572 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/config.in b/gcc/config.in index 70389063401..d80fb9f6e11 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -199,12 +199,6 @@ #endif -/* Define if the zone collector is in use */ -#ifndef USED_FOR_TARGET -#undef GGC_ZONE -#endif - - /* mcontext_t fields start with __ */ #ifndef USED_FOR_TARGET #undef HAS_MCONTEXT_T_UNDERSCORES @@ -266,12 +260,6 @@ #endif -/* Define if your assembler supports SPARC4 instructions. */ -#ifndef USED_FOR_TARGET -#undef HAVE_AS_SPARC4 -#endif - - /* Define if your assembler supports fprnd. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_FPRND @@ -477,12 +465,24 @@ #endif +/* Define if your assembler supports SPARC4 instructions. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_SPARC4 +#endif + + /* Define if your assembler and linker support GOTDATA_OP relocs. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_SPARC_GOTDATA_OP #endif +/* Define to 1 if your assembler supports #nobits, 0 otherwise. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_SPARC_NOBITS +#endif + + /* Define if your assembler and linker support unaligned PC relative relocs. */ #ifndef USED_FOR_TARGET @@ -1228,7 +1228,7 @@ #endif -/* Define if your PowerPC64 linker supports a large TOC. */ +/* Define if your AIX linker supports a large TOC. */ #ifndef USED_FOR_TARGET #undef HAVE_LD_LARGE_TOC #endif |