OSDN Git Service

Only run fastcall test for x86 PE targets.
authorNick Clifton <nickc@redhat.com>
Thu, 7 Nov 2002 09:20:10 +0000 (09:20 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 7 Nov 2002 09:20:10 +0000 (09:20 +0000)
gas/testsuite/ChangeLog
gas/testsuite/gas/all/gas.exp

index 4a6771b..fe14a7c 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-07  Nick Clifton  <nickc@redhat.com>
+
+       * gas/all/gas.exp: Only run fastcall test for x86 PE targets.
+
 2002-11-07  Casper S. Hornstrup  <chorns@users.sourceforge.net>
 
        * gas/all/gas.exp: Run fastcall label handling test.
index ef58c78..ddbc76d 100644 (file)
@@ -165,4 +165,8 @@ case $target_triplet in {
     }
 }
 
-gas_test "fastcall.s" ""   "" "fastcall labels"
+if {   [istarget "i*86-*-*pe*"] \
+    || [istarget "i*86-*-cygwin*"] \
+    || [istarget "i*86-*-mingw32*"] } {
+  gas_test "fastcall.s" ""   "" "fastcall labels"
+}