This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH COMMITTED: Add xfail for ARM variants to const-elim-1.c test


The const-elim-1 test was marked to xfail for arm-*-*.  The comment
says that it fails on ARM cores, and it does fail for my xscale-elf
compiler.  I added xfails for strongarm-*-* and xscale-*-*.  Committed
as obvious.

Ian


2004-01-27  Ian Lance Taylor  <ian@wasabisystems.com>

	* gcc.dg/const-elim-1.c: Add xfail for strongarm-*-* and
	xscale-*-*.


Index: gcc.dg/const-elim-1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.dg/const-elim-1.c,v
retrieving revision 1.5
diff -u -r1.5 const-elim-1.c
--- gcc.dg/const-elim-1.c	18 Jan 2004 04:39:34 -0000	1.5
+++ gcc.dg/const-elim-1.c	27 Jan 2004 15:17:09 -0000
@@ -10,7 +10,7 @@
 /* This test fails on ARM cores because we use a block move to
    initialize "S" in test2, and GCC is not clever enough to eliminate
    the block move.  */
-/* { dg-final { scan-assembler-not "L\\\$?C\[^A-Z\]" { xfail arm-*-* powerpc*-*-aix* } } } */
+/* { dg-final { scan-assembler-not "L\\\$?C\[^A-Z\]" { xfail arm-*-* strongarm-*-* xscale-*-* powerpc*-*-aix* } } } */
 
 #define I (__extension__ 1.0iF)
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]