diff options
author | midipix <writeonce@midipix.org> | 2019-03-10 04:03:58 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-03-12 02:53:37 -0400 |
commit | 5dc6f3c7fbc425bae506517985b28eefb0d39412 (patch) | |
tree | ad2b8859b9223c476de13feff5bdaa04ed8e436a | |
parent | 95a185e0b325f30fe5a2c47f1365ebda8349de31 (diff) | |
download | cbb-gcc-4.6.4-5dc6f3c7fbc425bae506517985b28eefb0d39412.tar.bz2 cbb-gcc-4.6.4-5dc6f3c7fbc425bae506517985b28eefb0d39412.tar.xz |
dwarf2out_begin_prologue(): only omit label when exception handling is sjlj.
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 025593cef..b7013093d 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -4050,7 +4050,7 @@ dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED, call-site information. We must emit this label if it might be used. */ if (!do_frame && (!flag_exceptions - || targetm.except_unwind_info (&global_options) != UI_TARGET)) + || targetm.except_unwind_info (&global_options) == UI_SJLJ)) return; fnsec = function_section (current_function_decl); |