Commit 24cf2fd3 authored by hainque's avatar hainque
Browse files

* dwarf2out.c (dwarf2out_frame_finish): Honor DWARF2_FRAME_INFO

        defined and non-zero.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97319 138bc75d-0d04-0410-961f-82ee72b054a4
parent 19f5eed0
2005-03-31 Olivier Hainque <hainque@adacore.com>
* dwarf2out.c (dwarf2out_frame_finish): Honor DWARF2_FRAME_INFO
defined and non-zero.
2005-03-31 Gabriel Dos Reis <gdr@integrable-solutions.net>
PR c++/18644
......
......@@ -2468,7 +2468,12 @@ void
dwarf2out_frame_finish (void)
{
/* Output call frame information. */
if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
if (write_symbols == DWARF2_DEBUG
|| write_symbols == VMS_AND_DWARF2_DEBUG
#ifdef DWARF2_FRAME_INFO
|| DWARF2_FRAME_INFO
#endif
)
output_call_frame_info (0);
#ifndef TARGET_UNWIND_INFO
......
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