This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[patch] compile/2000804-1.x: Disable on h8300.
- From: Kazu Hirata <kazu at cs dot umass dot edu>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sun, 08 Jun 2003 15:37:11 -0400 (EDT)
- Subject: [patch] compile/2000804-1.x: Disable on h8300.
Hi,
Attached is a patch to disable compile/2000804-1.c on h8300 port. The
justification is stated right in the patch.
Committed as obvious.
Kazu Hirata
2003-06-08 Kazu Hirata <kazu@cs.umass.edu>
* gcc.c-torture/compile/20000804-1.x: Dsiable on h8300 port.
Index: 20000804-1.x
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/compile/20000804-1.x,v
retrieving revision 1.3
diff -u -r1.3 20000804-1.x
--- 20000804-1.x 15 Jan 2003 21:26:13 -0000 1.3
+++ 20000804-1.x 8 Jun 2003 19:34:10 -0000
@@ -1,7 +1,9 @@
-# This does not work on m68hc11 due to the use of an asm statement
+# This does not work on m68hc11 or h8300 due to the use of an asm statement
# to force a 'long long' (64-bits) to go in a register.
-if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"] } {
+if { [istarget "m6811-*-*"]
+ || [istarget "m6812-*-*"]
+ || [istarget "h8300-*-*"] } {
return 1
}