diff options
author | Richard Henderson <rth@redhat.com> | 2001-03-27 21:24:24 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-27 21:24:24 -0800 |
commit | 531073e70e23f5faa6a88240b5cd73e4df3202d6 (patch) | |
tree | bb2aa76dca055c2e46eabf6e73ba0e455926a762 /gcc/final.c | |
parent | 979988f32cd329b479079a32a12445f53125108d (diff) | |
download | gcc-531073e70e23f5faa6a88240b5cd73e4df3202d6.zip gcc-531073e70e23f5faa6a88240b5cd73e4df3202d6.tar.gz gcc-531073e70e23f5faa6a88240b5cd73e4df3202d6.tar.bz2 |
Make -fsjlj-exceptions a configure option.
From-SVN: r40905
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) |