From: Kazu Hirata Date: Fri, 30 Jan 2004 18:22:16 +0000 (+0000) Subject: gcse.c (bypass_block): Fix a typo in the previous check-in to the file. X-Git-Tag: releases/gcc-4.0.0~10529 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0cad2d5f8c91526b2ce7db84ad021e8026af89f;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 986c1c7cc894..bb3578e5430f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-01-30 Kazu Hirata + + * gcse.c (bypass_block): Fix a typo in the previous check-in + to the file. + 2004-01-30 Andrew Pinski * toplev.c: Include alloc-pool.h. diff --git a/gcc/gcse.c b/gcc/gcse.c index c2d7d5fb8414..b61ee8ccbee9 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -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)