* lib/gas-defs.exp (is_elf_format): Add OpenBSD support.
authorMark Kettenis <kettenis@gnu.org>
Thu, 22 Apr 2004 20:27:41 +0000 (20:27 +0000)
committerMark Kettenis <kettenis@gnu.org>
Thu, 22 Apr 2004 20:27:41 +0000 (20:27 +0000)
gas/testsuite/ChangeLog
gas/testsuite/lib/gas-defs.exp

index 68a45dd498f9561db910a1d5c134f5962876df16..da75cc227728e410bdb3bd61c3261b7573c39daf 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-22  Mark Kettenis  <kettenis@gnu.org>
+
+       * lib/gas-defs.exp (is_elf_format): Add OpenBSD support.
+
 2004-04-22  Atsushi Nemoto  <anemo@mba.ocn.ne.jp>
 
        * gas/mips/lb-xgot-ilocks.d: Remove nops in load delay slot.
index fec27789488c31bd7149016919a84f310433cd04..f0c6b8c91a14db5e006c8855275386579fe67414 100644 (file)
@@ -197,6 +197,7 @@ proc is_elf_format {} {
         && ![istarget *-*-irix5*] \
         && ![istarget *-*-irix6*] \
         && ![istarget *-*-netbsd*] \
+        && ![istarget *-*-openbsd*] \
         && ![istarget *-*-solaris2*] } {
        return 0
     }
@@ -217,6 +218,18 @@ proc is_elf_format {} {
             || [istarget ns32k-*-netbsd*]) } {
        return 0
     }
+
+    if { [istarget arm-*-openbsd*] \
+        || [istarget i386-*-openbsd\[0-2\].*] \
+        || [istarget i386-*-openbsd3.\[0-3\]] \
+        || [istarget m68*-*-openbsd*] \
+        || [istarget ns32k-*-openbsd*] \
+        || [istarget sparc-*-openbsd\[0-2\].*] \
+        || [istarget sparc-*-openbsd3.\[0-1\]] \
+        || [istarget vax-*-openbsd*] } {
+       return 0
+    }
+
     return 1
 }