sibcall-6.c: Skip in -fPIC mode on X86 ilp32.
* gcc.dg/sibcall-6.c: Skip in -fPIC mode on X86 ilp32. * gcc.target/i386/20020523-1.c: Ditto. * gcc.target/i386/tailcall-1.c: Ditto. * gcc.target/i386/ssetype-3.c: Make magic* static to work with -fPIC. * gcc.target/i386/ssetype-5.c: Ditto. Co-Authored-By: Kaveh R. Ghazi <ghazi@caip.rutgers.edu> From-SVN: r108521
This commit is contained in:
parent
df06cddf76
commit
9d1a0fdbcd
6 changed files with 14 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-12-14 Kean Johnston <jkj@sco.com>
|
||||
Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* gcc.dg/sibcall-6.c: Skip in -fPIC mode on X86 ilp32.
|
||||
* gcc.target/i386/20020523-1.c: Ditto.
|
||||
* gcc.target/i386/tailcall-1.c: Ditto.
|
||||
* gcc.target/i386/ssetype-3.c: Make magic* static to work with -fPIC.
|
||||
* gcc.target/i386/ssetype-5.c: Ditto.
|
||||
|
||||
2005-12-14 Jeff Law <law@redhat.com>
|
||||
|
||||
* gcc.dg/tree-ssa/foldstring-1.c: New test.
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
Contributed by Andreas Bauer <baueran@in.tum.de> */
|
||||
|
||||
/* { dg-do run { target i?86-*-* s390*-*-* x86_64-*-*} } */
|
||||
/* { dg-skip-if "" { { i?86-*-* x86_64-*-* } && ilp32 } { "-fpic" "-fPIC" } { "" } } */
|
||||
/* { dg-options "-O2 -foptimize-sibling-calls" } */
|
||||
|
||||
extern void abort (void);
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
This testcase was miscompiled because sse_mov?fcc_const0*
|
||||
patterns were missing earlyclobber. */
|
||||
/* { dg-do run { target i?86-*-* x86_64-*-* } } */
|
||||
/* { dg-skip-if "" { ilp32 } { "-fpic" "-fPIC" } { "" } } */
|
||||
/* { dg-require-effective-target ilp32 } */
|
||||
/* { dg-options "-march=pentium3 -msse -ffast-math -O2" } */
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include <xmmintrin.h>
|
||||
|
||||
__m128 magic_a, magic_b;
|
||||
static __m128 magic_a, magic_b;
|
||||
__m128
|
||||
t1(void)
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
/* Verify that we generate proper instruction with memory operand. */
|
||||
|
||||
#include <xmmintrin.h>
|
||||
__m128i magic_a, magic_b;
|
||||
static __m128i magic_a, magic_b;
|
||||
__m128i
|
||||
t1(void)
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* { dg-do compile } */
|
||||
/* { dg-skip-if "" { { i?86-*-* x86_64-*-* } && ilp32 } { "-fpic" "-fPIC" } { "" } } */
|
||||
/* { dg-options "-O2" } */
|
||||
|
||||
typedef unsigned int Cardinal;
|
||||
|
|
Loading…
Add table
Reference in a new issue