Commit 1ea5e949 by Jakub Jelinek Committed by Jakub Jelinek

re PR target/35100 (internal compiler error: in extract_insn, at recog.c:1990)

	PR target/35100
	* gcc.target/powerpc/longcall-1.c: New test.

From-SVN: r138435
parent 9d4e8554
2008-07-31 Jakub Jelinek <jakub@redhat.com> 2008-07-31 Jakub Jelinek <jakub@redhat.com>
PR target/35100
* gcc.target/powerpc/longcall-1.c: New test.
PR preprocessor/36649 PR preprocessor/36649
* gcc.dg/pch/cpp-3.hs: Add include guards. * gcc.dg/pch/cpp-3.hs: Add include guards.
* gcc.dg/pch/cpp-3a.h: Likewise. * gcc.dg/pch/cpp-3a.h: Likewise.
...@@ -79,6 +82,7 @@ ...@@ -79,6 +82,7 @@
PR debug/36278 PR debug/36278
* g++.dg/debug/namespace2.C: New test. * g++.dg/debug/namespace2.C: New test.
PR preprocessor/36649
* gcc.dg/pch/cpp-3.c: New test. * gcc.dg/pch/cpp-3.c: New test.
* gcc.dg/pch/cpp-3.hs: New file. * gcc.dg/pch/cpp-3.hs: New file.
* gcc.dg/pch/cpp-3a.h: New file. * gcc.dg/pch/cpp-3a.h: New file.
......
/* PR target/35100 */
/* { dg-do compile { target fpic } } */
/* { dg-options "-fpic" } */
void foo (void) __attribute__((__longcall__));
int baz (void) __attribute__((__longcall__));
int
bar (void)
{
foo ();
return baz () + 1;
}
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