2012-06-15 Richard Guenther <rguenther@suse.de>
* gcc.c-torture/execute/
20120615-1.c: New testcase.
From-SVN: r188655
+2012-06-15 Richard Guenther <rguenther@suse.de>
+
+ * gcc.c-torture/execute/20120615-1.c: New testcase.
+
2012-06-15 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/vect8.ad[sb]: New test.
--- /dev/null
+extern void abort (void);
+
+void __attribute__((noinline,noclone))
+ test1(int i)
+{
+ if (i == 12)
+ return;
+ if (i != 17)
+ {
+ if (i == 15)
+ return;
+ abort ();
+ }
+}
+
+int main() { test1 (15); return 0; }