Commit 96933f43 by Jeffrey A Law Committed by Jeff Law

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

From-SVN: r33358
parent 29aef5ca
Sun Apr 23 14:41:33 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/20000422-1.c: New test.
Thu Apr 20 11:57:03 2000 Jeffrey A Law (law@cygnus.com)
* gcc.dg/20000420-1.c: New test.
* gcc.c-torture/compile/20000420-1.c: New test.
2000-04-20 Nathan Sidwell <nathan@codesourcery.com>
......
int ops[13] =
{
11, 12, 46, 3, 2, 2, 3, 2, 1, 3, 2, 1, 2
};
int correct[13] =
{
46, 12, 11, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1
};
int num = 13;
int main()
{
int i;
for (i = 0; i < num; i++)
{
int j;
for (j = num - 1; j > i; j--)
{
if (ops[j-1] < ops[j])
{
int op = ops[j];
ops[j] = ops[j-1];
ops[j-1] = op;
}
}
}
for (i = 0; i < num; i++)
if (ops[i] != correct[i])
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