diff options
author | Nick Clifton <nickc@redhat.com> | 2008-08-20 10:23:08 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2008-08-20 10:23:08 +0000 |
commit | 6e60703f413e6c124eeb17d751dc9a9bdd89443e (patch) | |
tree | 481c9b9685b452b37df46fbde94136e34f494bad /gcc/configure.ac | |
parent | c4ab2baad2c3e42f8afdeccd96b4bccdefbcb19e (diff) | |
download | gcc-6e60703f413e6c124eeb17d751dc9a9bdd89443e.zip gcc-6e60703f413e6c124eeb17d751dc9a9bdd89443e.tar.gz gcc-6e60703f413e6c124eeb17d751dc9a9bdd89443e.tar.bz2 |
configure.ac (HAVE_GAS_CFI_DIRECTIVE): Always test for assembler support of this feature.
* configure.ac (HAVE_GAS_CFI_DIRECTIVE): Always test for assembler
support of this feature. Do not assume that a sufficiently new
assembler will support the feature regardless of the target type.
(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): Likewise.
* configure: Regenerate.
From-SVN: r139266
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index a0e3f56..97cf160 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2182,7 +2182,7 @@ changequote([,])dnl # Check if we have assembler support for unwind directives. gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive, - [elf,2,17,0],, + ,, [ .text .cfi_startproc .cfi_offset 0, 0 @@ -2195,7 +2195,7 @@ AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE, [Define 0/1 if your assembler supports CFI directives.]) gcc_GAS_CHECK_FEATURE([cfi personality directive], - gcc_cv_as_cfi_personality_directive, [elf,2,17,0],, + gcc_cv_as_cfi_personality_directive, ,, [ .text .cfi_startproc, .cfi_personality 0, symbol |