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

From-SVN: r20187
This commit is contained in:
Jeffrey A Law 1998-06-02 19:53:46 +00:00 committed by Jeff Law
parent 3a0243dbd8
commit 8ca0d19f71
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Tue Jun 2 20:51:43 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/980602-1.c: New test.
1998-06-02 Dave Love <d.love@dl.ac.uk>
* 970125-0.f: Fix per JCB. Add commentary.

View File

@ -0,0 +1,10 @@
main()
{
int i;
for (i = 1; i < 100; i++)
;
if (i == 100)
exit (0);
abort ();
}