blob: a437f67605a39efa719732888420eca8f3a67b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
pr83298.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
int a, b, c = 1;
void
testTortureExecute (void)
{
for (; b < 1; b++)
;
if (!(c * (a < 1)))
ASSERT (0);
return;
}
|