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/gcse.c | |
| 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/gcse.c')
| -rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
