Commit 929a66d2 by Jeffrey A Law Committed by Jeff Law

20000731-1.c: New test.

        * gcc.c-torture/execute/20000731-1.c: New test.
        * gcc.c-torture/execute/20000731-1.x: Expected to fail for i?86-*-*.

From-SVN: r35399
parent 663522cb
Mon Jul 31 21:14:49 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/20000731-1.c: New test.
* gcc.c-torture/execute/20000731-1.x: Expected to fail for i?86-*-*.
2000-07-31 Jakub Jelinek <jakub@redhat.com>
* testsuite/gcc.dg/cpp/paste7.c: New test.
......
double
foo (void)
{
return 0.0;
}
void
do_sibcall (void)
{
(void) foo ();
}
int
main (void)
{
double x;
for (x = 0; x < 20; x++)
do_sibcall ();
if (!(x >= 10))
abort ();
exit (0);
}
# Doesn't work. Hasn't worked ever, I think.
set torture_execute_xfail "i?86-*-*"
return 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