gcse.c (bypass_block): Fix a typo in the previous check-in to the file.
* gcse.c (bypass_block): Fix a typo in the previous check-in to the file. From-SVN: r76981
This commit is contained in:
parent
7b1d1edf99
commit
f0cad2d5f8
@ -1,3 +1,8 @@
|
||||
2004-01-30 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* gcse.c (bypass_block): Fix a typo in the previous check-in
|
||||
to the file.
|
||||
|
||||
2004-01-30 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
* toplev.c: Include alloc-pool.h.
|
||||
|
@ -4878,7 +4878,7 @@ bypass_block (basic_block bb, rtx setcc, rtx jump)
|
||||
branch. We would end up emitting the instruction on "both"
|
||||
edges. */
|
||||
|
||||
if (dest && setcc && !CC0_P (SET_DEST (pat)))
|
||||
if (dest && setcc && !CC0_P (SET_DEST (PATTERN (setcc))))
|
||||
{
|
||||
edge e2;
|
||||
for (e2 = e->src->succ; e2; e2 = e2->succ_next)
|
||||
|
Loading…
Reference in New Issue
Block a user