This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug testsuite/31290] gcc.c-torture/execute/920612-1.c depends on overflow being defined
- 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: 21 Mar 2007 00:49:34 -0000
- Subject: [Bug testsuite/31290] gcc.c-torture/execute/920612-1.c depends on overflow being defined
- References: <bug-31290-6528@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from pinskia at gcc dot gnu dot org 2007-03-21 00:49 -------
The testcase contains:
f(j)int j;{return j++>0;}
Which is equialvant to:
f(j)int j;{return(j+1)>0;}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31290