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
This commit is contained in:
Jakub Jelinek 2008-07-31 22:37:21 +02:00 committed by Jakub Jelinek
parent 9d4e8554de
commit 1ea5e949d7
2 changed files with 17 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2008-07-31 Jakub Jelinek <jakub@redhat.com>
PR target/35100
* gcc.target/powerpc/longcall-1.c: New test.
PR preprocessor/36649
* gcc.dg/pch/cpp-3.hs: Add include guards.
* gcc.dg/pch/cpp-3a.h: Likewise.
@ -79,6 +82,7 @@
PR debug/36278
* g++.dg/debug/namespace2.C: New test.
PR preprocessor/36649
* gcc.dg/pch/cpp-3.c: New test.
* gcc.dg/pch/cpp-3.hs: New file.
* gcc.dg/pch/cpp-3a.h: New file.

View File

@ -0,0 +1,13 @@
/* 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;
}