This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug optimization/5738] GCSE missed optimization: common condition instructions
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 4 Jan 2004 07:08:02 -0000
- Subject: [Bug optimization/5738] GCSE missed optimization: common condition instructions
- References: <20020220135601.5738.dann@godzilla.ics.uci.edu>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-01-04 07:08 -------
I messed up in saying what it does on PPC:
That should read instead:
f()
{
if(a) goto b
ifacode
return
b:
ifnotacode
return
}
which is not optimial.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=5738