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]

XFAILures on i586 (gcc-3_2-branch)


Hi,

This patch is the only thing required in order to have 0 failures for gcc on 
i586-*-linux-gnu, on the gcc-3_2-branch. For some reasons, the tests were 
XFAILed long time ago for i686 but not for the other x86 processors.

For the sake of completeness, loop-3c.c is now fixed while loop-2e.c is 
XFAILed for all x86 processors on mainline.

OK to commit ?

-- 
Eric Botcazou


2002-11-23  Eric Botcazou  <ebotcazou@libertysurf.fr>

	* gcc.c-torture/execute/loop-2e.x: Let the testcase
	XFAIL for all x86 processors.
	* gcc.c-torture/execute/loop-3c.x: Likewise.


Index: gcc.c-torture/execute/loop-2e.x
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/execute/loop-2e.x,v
retrieving revision 1.3
diff -u -r1.3 loop-2e.x
--- gcc.c-torture/execute/loop-2e.x	27 Sep 2001 19:32:24 -0000	1.3
+++ gcc.c-torture/execute/loop-2e.x	23 Nov 2002 09:00:15 -0000
@@ -6,12 +6,12 @@
       set torture_compile_xfail "$target_triplet"
 }
 
-if { [istarget "i686-*"] } {
+if { [istarget "i?86-*"] } {
     set torture_eval_before_execute {
 	global compiler_conditional_xfail_data
 	set compiler_conditional_xfail_data {
 	    "Loop optimiser bug" \
-		    "i686-*" \
+		    "i?86-*" \
 		    { "-Os" } \
 		    { "" }
 	}
Index: gcc.c-torture/execute/loop-3c.x
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/execute/Attic/loop-3c.x,v
retrieving revision 1.1
diff -u -r1.1 loop-3c.x
--- gcc.c-torture/execute/loop-3c.x	27 Sep 2001 19:32:24 -0000	1.1
+++ gcc.c-torture/execute/loop-3c.x	23 Nov 2002 09:00:15 -0000
@@ -1,9 +1,9 @@
-if { [istarget "i686-*"] } {
+if { [istarget "i?86-*"] } {
     set torture_eval_before_execute {
 	global compiler_conditional_xfail_data
 	set compiler_conditional_xfail_data {
 	    "Loop optimiser bug" \
-		    "i686-*" \
+		    "i?86-*" \
 		    { "-Os" } \
 		    { "" }
 	}


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