diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-15 19:36:26 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-15 19:36:26 +0000 |
commit | 5ed988d23c7fd71edc010e7b6d9fbbbee2dbf87e (patch) | |
tree | b08b4948d80791b0d6ae7cf89ddff136424373b8 /libffi/src | |
parent | c29d64f7032233914e3f5e48ac690e3a96ba9acc (diff) | |
download | gcc-5ed988d23c7fd71edc010e7b6d9fbbbee2dbf87e.tar.gz |
* configure.ac (libffi_cv_as_x86_64_unwind_section_type): New test.
* configure: Regenerate.
* fficonfig.h.in: Regenerate.
* libffi/src/x86/unix64.S (.eh_frame)
[HAVE_AS_X86_64_UNWIND_SECTION_TYPE]: Use @unwind section type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157466 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/src')
-rw-r--r-- | libffi/src/x86/unix64.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libffi/src/x86/unix64.S b/libffi/src/x86/unix64.S index fe3f4fd6223..7a6619a5486 100644 --- a/libffi/src/x86/unix64.S +++ b/libffi/src/x86/unix64.S @@ -324,7 +324,11 @@ ffi_closure_unix64: .LUW9: .size ffi_closure_unix64,.-ffi_closure_unix64 +#ifdef HAVE_AS_X86_64_UNWIND_SECTION_TYPE + .section .eh_frame,"a",@unwind +#else .section .eh_frame,"a",@progbits +#endif .Lframe1: .long .LECIE1-.LSCIE1 /* CIE Length */ .LSCIE1: |