* gcc.c-torture/execute/20011217-1.c: New test.

From-SVN: r48129
This commit is contained in:
Jeff Law 2001-12-17 14:29:28 -07:00 committed by Jeff Law
parent 8f08e8c010
commit 2d628c257e
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Dec 17 14:31:42 2001 Jeffrey A Law (law@redhat.com)
* gcc.c-torture/execute/20011217-1.c: New test.
Mon Dec 17 16:54:56 2001 Nicola Pero <nicola@brainstorm.co.uk> Mon Dec 17 16:54:56 2001 Nicola Pero <nicola@brainstorm.co.uk>
* objc.dg/special/: New directory. * objc.dg/special/: New directory.

View File

@ -0,0 +1,12 @@
int
main()
{
double x = 1.0;
double y = 2.0;
if ((y > x--) != 1)
abort ();
exit (0);
}