This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c/7527: gcc 2.95.3 and gcc 3.0.4 generate incorrect code
- From: Stian <stian at knowledge-network dot no>
- To: gcc-gnats at gcc dot gnu dot org
- Cc: gcc-prs at gcc dot gnu dot org, gcc-bugs at gcc dot gnu dot org, nobody at gcc dot gnu dot org, tomdean at asus dot tddhome
- Date: 08 Aug 2002 12:08:55 +0200
- Subject: Re: c/7527: gcc 2.95.3 and gcc 3.0.4 generate incorrect code
The second conditional makes more sense if you use () at the right places
if(!(_io_ports[0x39]&0x80))
If you don't add them, your statement is the same as
if((!_io_ports[0x39])&0x80)
That always come out false, then ! makes the result of the io-read either 0 or 1.
Stian