2010-07-24 Richard Guenther <rguenther@suse.de>
PR lto/43212
* gcc.dg/lto/
20100724-1_0.c: New testcase.
* gcc.dg/lto/
20100724-1_1.c: Likewise.
From-SVN: r162501
+2010-07-24 Richard Guenther <rguenther@suse.de>
+
+ PR lto/43212
+ * gcc.dg/lto/20100724-1_0.c: New testcase.
+ * gcc.dg/lto/20100724-1_1.c: Likewise.
+
2010-07-24 Tobias Burnus <burnus@net-b.de>
PR fortran/40011
--- /dev/null
+/* { dg-lto-do link } */
+
+void baz(void)
+{
+ __builtin_abort ();
+}
+void foo(void)
+{
+ baz();
+}
+int main() { return 0; }
--- /dev/null
+extern __attribute__((__noreturn__)) void baz(void);
+void bar(void)
+{
+ baz();
+}