+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
--- /dev/null
+/* { 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);
+}