Commit abe79fd4 by Jeffrey A Law Committed by Jeff Law

* stmt.c (stmt_loop_nest_empty): Fix thinko in last change.

From-SVN: r32820
parent 1dfb49b9
Wed Mar 29 15:44:53 2000 Jeffrey A Law (law@cygnus.com)
* calls.c (expand_call): Fix typo.
* stmt.c (stmt_loop_nest_empty): Fix thinko in last change.
* calls.c (expand_call): Fix typo in last change.
2000-03-29 Jason Merrill <jason@casey.cygnus.com>
......
......@@ -2621,7 +2621,7 @@ stmt_loop_nest_empty ()
/* cfun->stmt can be NULL if we are building a call to get the
EH context for a setjmp/longjmp EH target and the current
function was a deferred inline function. */
return (cfun->stmt != NULL && loop_stack == NULL);
return (cfun->stmt == NULL || loop_stack == NULL);
}
/* Return non-zero if we should preserve sub-expressions as separate
......
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