diff options
author | Richard Henderson <rth@redhat.com> | 2008-08-07 09:29:22 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2008-08-07 09:29:22 -0700 |
commit | 058514b381c9f8225cfd63731d90006c37a83139 (patch) | |
tree | 6f429f963a824f06c51ad8534931937fd85f61e3 /gcc/c-cppbuiltin.c | |
parent | 9940eebdf8c0614c2bcde838ed2ac56ae96e93b3 (diff) | |
download | gcc-058514b381c9f8225cfd63731d90006c37a83139.zip gcc-058514b381c9f8225cfd63731d90006c37a83139.tar.gz gcc-058514b381c9f8225cfd63731d90006c37a83139.tar.bz2 |
configure.ac (HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): New.
* configure.ac (HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): New.
* configure, config.in: Rebuild.
* debug.h (dwarf2out_do_cfi_asm): Declare.
* c-cppbuiltin.c (c_cpp_builtins): Use it.
* dwarf2out.c (dwarf2out_do_cfi_asm): New.
(dwarf2out_cfi_label, add_fde_cfi, output_call_frame_info,
dwarf2out_begin_prologue, dwarf2out_end_epilogue): Use it.
From-SVN: r138846
Diffstat (limited to 'gcc/c-cppbuiltin.c')
-rw-r--r-- | gcc/c-cppbuiltin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-cppbuiltin.c b/gcc/c-cppbuiltin.c index 01f9215..cbd56b4 100644 --- a/gcc/c-cppbuiltin.c +++ b/gcc/c-cppbuiltin.c @@ -693,7 +693,7 @@ c_cpp_builtins (cpp_reader *pfile) #endif #ifdef DWARF2_UNWIND_INFO - if (flag_dwarf2_cfi_asm && dwarf2out_do_frame ()) + if (dwarf2out_do_cfi_asm ()) cpp_define (pfile, "__GCC_HAVE_DWARF2_CFI_ASM"); #endif |