diff options
author | Alan Lehotsky <apl@alum.mit.edu> | 2002-05-31 22:23:38 -0400 |
---|---|---|
committer | Alan Lehotsky <alehotsky@gcc.gnu.org> | 2002-05-31 22:23:38 -0400 |
commit | d9763749a509f21ffb7ab420a89cc6239897a748 (patch) | |
tree | 646293a71c17efab7e90c0a9c2d676c2cdacd528 /gcc | |
parent | f6b1cfea918071bde1916f3015fcd56ab25aad3a (diff) | |
download | gcc-d9763749a509f21ffb7ab420a89cc6239897a748.zip gcc-d9763749a509f21ffb7ab420a89cc6239897a748.tar.gz gcc-d9763749a509f21ffb7ab420a89cc6239897a748.tar.bz2 |
*** empty log message ***
From-SVN: r54136
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/except.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e8545fb..0d4ada7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-01 Alan Lehotsky <apl@alum.mit.edu> + + * except.c (nothrow_function_p): Walk epilogue delay list + checking the insn, not the chain for potential throws. + 2002-05-31 Zack Weinberg <zack@codesourcery.com> * Makefile.in (INSTALL_CPP, UNINSTALL_CPP): Remove. @@ -126,7 +131,7 @@ (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Define. 2002-05-31 Alan Lehotsky <apl@alum.mit.edu> - + * varasm.c (mark_constant_pool): Walk epilogue delay list checking the insn, not the chain for potential constants. diff --git a/gcc/except.c b/gcc/except.c index ee6ee9f..472e84d 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -3147,7 +3147,7 @@ nothrow_function_p () return false; for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1)) - if (can_throw_external (insn)) + if (can_throw_external (XEXP (insn, 0))) return false; return true; |