diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2007-05-08 01:21:48 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2007-05-08 01:21:48 +0000 |
commit | 79d37e4574ed6ca0c6fbd189b62f84cb8e90450a (patch) | |
tree | 7598dca3a64c7ee609ab5719e39cf27f0b102930 /gcc | |
parent | 2091ff6689ae73c4b95338a435d1c6e7b743599e (diff) | |
download | gcc-79d37e4574ed6ca0c6fbd189b62f84cb8e90450a.zip gcc-79d37e4574ed6ca0c6fbd189b62f84cb8e90450a.tar.gz gcc-79d37e4574ed6ca0c6fbd189b62f84cb8e90450a.tar.bz2 |
invalid-call-1.c: Fix options for 32-bit x86.
2007-05-07 Eric Christopher <echristo@apple.com>
* gcc.dg/invalid-call-1.c: Fix options for 32-bit x86.
From-SVN: r124533
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 16 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/invalid-call-1.c | 2 |
2 files changed, 11 insertions, 7 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 41347a0..8c0103f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-05-07 Eric Christopher <echristo@apple.com> + + * gcc.dg/invalid-call-1.c: Fix options for 32-bit x86. + 2007-05-07 Uros Bizjak <ubizjak@gmail.com> * gcc.dg/dfp/convert-bfp-fold.c: Remove extra assignment to @@ -36,7 +40,7 @@ * gfortran.dg/char_result_4.f90: New test. 2007-06-05 Revital Eres <eres@il.ibm.com> - + PR 30957 * gcc.dg/pr30957-1.c: New test. @@ -64,9 +68,9 @@ * gfortran.dg/fseek.f90: New test. 2007-05-04 Bob Wilson <bob.wilson@acm.org> - + * g++.old-deja/g++.pt/static11.C: Remove xtensa-*-elf* xfail. - + 2007-05-04 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR libfortran/31210 @@ -99,7 +103,7 @@ 2007-05-03 Dorit Nuzman <dorit@il.ibm.com> PR tree-optimization/31699 - * lib/target-supports.exp (check_effective_target_vect_intfloat_cvt): + * lib/target-supports.exp (check_effective_target_vect_intfloat_cvt): New. (check_effective_target_vect_floatint_cvt): New. * gcc.dg/vect/vect-floatint-conversion-1.c: Use new keyword instead @@ -118,8 +122,8 @@ 2007-05-02 Seongbae Park <seongbae.park@gmail.com> PR C++/31663 - * g++.dg/warn/anonymous-namespace-2.C: New. - * g++.dg/warn/anonymous-namespace-2.h: New. + * g++.dg/warn/anonymous-namespace-2.C: New. + * g++.dg/warn/anonymous-namespace-2.h: New. 2007-05-02 Paul Brook <paul@codesourcery.com> diff --git a/gcc/testsuite/gcc.dg/invalid-call-1.c b/gcc/testsuite/gcc.dg/invalid-call-1.c index 7474227..4126b5a 100644 --- a/gcc/testsuite/gcc.dg/invalid-call-1.c +++ b/gcc/testsuite/gcc.dg/invalid-call-1.c @@ -3,7 +3,7 @@ /* { dg-do compile } */ /* { dg-options "-O2" } */ -/* { dg-options "-O2 -mtune=i586" { target i?86-*-* } } */ +/* { dg-options "-O2 -march=i586" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */ typedef void (*fp)(void); extern char* bar(void* a1, int a2); |