Commit 22c40c28 by Jakub Jelinek Committed by Jakub Jelinek

* gcc.c-torture/execute/loop-6.c: New test.

From-SVN: r34573
parent 974ce8d3
2000-06-15 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/loop-6.c: New test.
2000-06-14 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/20000614-1.c: New test.
......
main()
{
char c;
char d;
int nbits;
c = -1;
for (nbits = 1 ; nbits < 100; nbits++) {
d = (1 << nbits) - 1;
if (d == c)
break;
}
if (nbits == 100)
abort();
exit(0);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment