diff options
author | Richard Henderson <rth@redhat.com> | 2008-08-05 14:25:48 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2008-08-05 14:25:48 -0700 |
commit | 8a24bf0486b5a23c2772b29ee38e6a8372eaeac1 (patch) | |
tree | 3450e0491847db6bc6dcae400eed593760ca0ffb | |
parent | 6b3fb3441ecf65c8b0e81cf3891a989fe0994df3 (diff) | |
download | gcc-8a24bf0486b5a23c2772b29ee38e6a8372eaeac1.tar.gz |
configure.ac (HAVE_GAS_CFI_DIRECTIVE): Check .cfi_personality.
* configure.ac (HAVE_GAS_CFI_DIRECTIVE): Check .cfi_personality.
* configure: Rebuild.
From-SVN: r138738
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 1 | ||||
-rw-r--r-- | gcc/configure.ac | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cdc4d87d107..8bce42a0280 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-08-05 Richard Henderson <rth@redhat.com> + + * configure.ac (HAVE_GAS_CFI_DIRECTIVE): Check .cfi_personality. + * configure: Rebuild. + 2008-08-05 Andrew Pinski <andrew_pinski@playstation.sony.com> PR tree-opt/37024 diff --git a/gcc/configure b/gcc/configure index d1996bb7b4b..abb1fd85c1b 100755 --- a/gcc/configure +++ b/gcc/configure @@ -20851,6 +20851,7 @@ fi .cfi_same_value 1 .cfi_def_cfa 1, 2 .cfi_escape 1, 2, 3, 4, 5 + .cfi_personality 0, symbol .cfi_endproc' > conftest.s if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 diff --git a/gcc/configure.ac b/gcc/configure.ac index 4f7fc325330..54e1eb49bfa 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2189,6 +2189,7 @@ gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive, .cfi_same_value 1 .cfi_def_cfa 1, 2 .cfi_escape 1, 2, 3, 4, 5 + .cfi_personality 0, symbol .cfi_endproc]) AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE, [`if test $gcc_cv_as_cfi_directive = yes; then echo 1; else echo 0; fi`], |