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:
Kazu Hirata 2004-01-30 18:22:16 +00:00 committed by Kazu Hirata
parent 7b1d1edf99
commit f0cad2d5f8
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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)