diff options
author | Jason Merrill <jason@redhat.com> | 2009-08-18 13:01:36 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2009-08-18 13:01:36 -0400 |
commit | e31bcd1b96a5d6236da6cb4965b112773878e35d (patch) | |
tree | d10cd641fb7ee2242f80c381c47d98011ca1467f /gcc/config.in | |
parent | 8fd962e39c8bf6a2506c684f48a19a41c4c5aa5f (diff) | |
download | gcc-e31bcd1b96a5d6236da6cb4965b112773878e35d.tar.gz |
elfos.h (ASM_DECLARE_OBJECT_NAME): Use gnu_unique_object type if available.
* config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use gnu_unique_object
type if available.
* configure.ac: Test for it.
* configure, config.in: Regenerate.
* doc/install.texi: Document --enable-gnu-unique-object.
From-SVN: r150882
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/gcc/config.in b/gcc/config.in index cc0202beec2..ee6535e8990 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -321,6 +321,12 @@ #endif +/* Define if your assembler supports LWSYNC instructions. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_LWSYNC +#endif + + /* Define if your assembler supports mfcr field. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_MFCRF @@ -351,22 +357,17 @@ #endif -/* Define if your assembler supports popcntb instruction. */ +/* Define if your assembler supports popcntb field. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_POPCNTB #endif -/* Define if your assembler supports popcntd instruction. */ +/* Define if your assembler supports POPCNTD instructions. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_POPCNTD #endif -/* Define if your assembler supports lwsync instruction. */ -#ifndef USED_FOR_TARGET -#undef HAVE_AS_LWSYNC -#endif - /* Define if your assembler supports .register. */ #ifndef USED_FOR_TARGET @@ -886,6 +887,12 @@ #endif +/* Define if your assembler supports @gnu_unique_object. */ +#ifndef USED_FOR_TARGET +#undef HAVE_GAS_GNU_UNIQUE_OBJECT +#endif + + /* Define if your assembler and linker support .hidden. */ #undef HAVE_GAS_HIDDEN |