Commit d3158f1a by Mike Stump

tell expand_expr that we are going to ignore the cleanup.

TREE_SIDE_EFFECTS should be set on these things.

From-SVN: r7222
parent 8d2733ca
...@@ -8157,7 +8157,7 @@ expand_cleanups_to (old_cleanups) ...@@ -8157,7 +8157,7 @@ expand_cleanups_to (old_cleanups)
{ {
while (cleanups_this_call != old_cleanups) while (cleanups_this_call != old_cleanups)
{ {
expand_expr (TREE_VALUE (cleanups_this_call), NULL_RTX, VOIDmode, 0); expand_expr (TREE_VALUE (cleanups_this_call), const0_rtx, VOIDmode, 0);
cleanups_this_call = TREE_CHAIN (cleanups_this_call); cleanups_this_call = TREE_CHAIN (cleanups_this_call);
} }
} }
......
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