Commit d9763749 by Alan Lehotsky Committed by Alan Lehotsky

*** empty log message ***

From-SVN: r54136
parent f6b1cfea
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.
......
......@@ -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;
......
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