diff options
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index cdc2de4..3277f5e 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2126,7 +2126,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) break; case NOTE_INSN_EH_REGION_BEG: - if (! exceptions_via_longjmp) + if (! USING_SJLJ_EXCEPTIONS) { ASM_OUTPUT_INTERNAL_LABEL (file, "LEHB", NOTE_EH_HANDLER (insn)); if (! flag_new_exceptions) @@ -2138,7 +2138,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) break; case NOTE_INSN_EH_REGION_END: - if (! exceptions_via_longjmp) + if (! USING_SJLJ_EXCEPTIONS) { ASM_OUTPUT_INTERNAL_LABEL (file, "LEHE", NOTE_EH_HANDLER (insn)); if (flag_new_exceptions) |