Commit c6348fe7 by Jakub Jelinek Committed by Jakub Jelinek

* gcc.dg/20001108-1.c: New test.

From-SVN: r37339
parent 2dee4af1
2000-11-09 Jakub Jelinek <jakub@redhat.com> 2000-11-09 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/20001108-1.c: New test.
2000-11-09 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/string-opt-1.c: Add test for strstr * gcc.c-torture/execute/string-opt-1.c: Add test for strstr
with both arguments constant strings. with both arguments constant strings.
* gcc.c-torture/execute/string-opt-3.c: New test. * gcc.c-torture/execute/string-opt-3.c: New test.
......
/* { dg-do run } */
/* { dg-options "-O2 -fomit-frame-pointer" } */
void die (long) __attribute__ ((noreturn));
void die (long e)
{
abort ();
for (;;);
}
long foo (double i)
{
if (i != 2.0)
abort ();
return 26;
}
long bar (long i, double x)
{
if (x < 0) die (1);
return foo (x);
}
main()
{
if (bar (0, 2.0) != 26)
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