Commit 6e60703f by Nick Clifton Committed by Nick Clifton

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
parent c4ab2baa
2008-08-20 Nick Clifton <nickc@redhat.com>
* 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.
2008-08-20 Richard Guenther <rguenther@suse.de> 2008-08-20 Richard Guenther <rguenther@suse.de>
* tree-vrp.c (found_in_subgraph): Remove. * tree-vrp.c (found_in_subgraph): Remove.
......
...@@ -20839,12 +20839,7 @@ if test "${gcc_cv_as_cfi_directive+set}" = set; then ...@@ -20839,12 +20839,7 @@ if test "${gcc_cv_as_cfi_directive+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6 echo $ECHO_N "(cached) $ECHO_C" >&6
else else
gcc_cv_as_cfi_directive=no gcc_cv_as_cfi_directive=no
if test $in_tree_gas = yes; then if test x$gcc_cv_as != x; then
if test $in_tree_gas_is_elf = yes \
&& test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 17 \) \* 1000 + 0`
then gcc_cv_as_cfi_directive=yes
fi
elif test x$gcc_cv_as != x; then
echo ' .text echo ' .text
.cfi_startproc .cfi_startproc
.cfi_offset 0, 0 .cfi_offset 0, 0
...@@ -20882,12 +20877,7 @@ if test "${gcc_cv_as_cfi_personality_directive+set}" = set; then ...@@ -20882,12 +20877,7 @@ if test "${gcc_cv_as_cfi_personality_directive+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6 echo $ECHO_N "(cached) $ECHO_C" >&6
else else
gcc_cv_as_cfi_personality_directive=no gcc_cv_as_cfi_personality_directive=no
if test $in_tree_gas = yes; then if test x$gcc_cv_as != x; then
if test $in_tree_gas_is_elf = yes \
&& test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 17 \) \* 1000 + 0`
then gcc_cv_as_cfi_personality_directive=yes
fi
elif test x$gcc_cv_as != x; then
echo ' .text echo ' .text
.cfi_startproc, .cfi_startproc,
.cfi_personality 0, symbol .cfi_personality 0, symbol
......
...@@ -2182,7 +2182,7 @@ changequote([,])dnl ...@@ -2182,7 +2182,7 @@ changequote([,])dnl
# Check if we have assembler support for unwind directives. # Check if we have assembler support for unwind directives.
gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive, gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive,
[elf,2,17,0],, ,,
[ .text [ .text
.cfi_startproc .cfi_startproc
.cfi_offset 0, 0 .cfi_offset 0, 0
...@@ -2195,7 +2195,7 @@ AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE, ...@@ -2195,7 +2195,7 @@ AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE,
[Define 0/1 if your assembler supports CFI directives.]) [Define 0/1 if your assembler supports CFI directives.])
gcc_GAS_CHECK_FEATURE([cfi personality directive], gcc_GAS_CHECK_FEATURE([cfi personality directive],
gcc_cv_as_cfi_personality_directive, [elf,2,17,0],, gcc_cv_as_cfi_personality_directive, ,,
[ .text [ .text
.cfi_startproc, .cfi_startproc,
.cfi_personality 0, symbol .cfi_personality 0, symbol
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment