2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-25 11:10:56 +08:00

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

From-SVN: r32530
This commit is contained in:
Jeffrey A Law 2000-03-14 16:10:27 +00:00 committed by Jeff Law
parent 4fa241f2f2
commit eb61c012cf
2 changed files with 18 additions and 0 deletions
gcc/testsuite
ChangeLog
gcc.c-torture/execute

@ -1,5 +1,6 @@
Tue Mar 14 08:58:37 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/2000314-1.c: New test.
* gcc.c-torture/compile/2000314-1.c: New test.
2000-03-13 Nathan Sidwell <nathan@codesourcery.com>

@ -0,0 +1,17 @@
int main ()
{
long winds = 0;
while (winds != 0)
{
if (*(char *) winds)
break;
}
if (winds == 0 || winds != 0 || *(char *) winds)
exit (0);
abort ();
}