diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-01-30 18:22:16 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-01-30 18:22:16 +0000 |
commit | f0cad2d5f8c91526b2ce7db84ad021e8026af89f (patch) | |
tree | 8ce30d3669a7c7f0331d17b7a6c40ce2b2254ae7 /gcc | |
parent | 7b1d1edf9946d53d17fbd1e7a67c2422156c4c1e (diff) | |
download | gcc-f0cad2d5f8c91526b2ce7db84ad021e8026af89f.zip gcc-f0cad2d5f8c91526b2ce7db84ad021e8026af89f.tar.gz gcc-f0cad2d5f8c91526b2ce7db84ad021e8026af89f.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gcse.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 986c1c7..bb3578e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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) |