OSDN Git Service

2002-02-18 Daniel Jacobowitz <drow@mvista.com>
authorDaniel Jacobowitz <dan@debian.org>
Mon, 18 Feb 2002 23:57:10 +0000 (23:57 +0000)
committerDaniel Jacobowitz <dan@debian.org>
Mon, 18 Feb 2002 23:57:10 +0000 (23:57 +0000)
        * config/obj-coff.h: Check !target_big_endian, not shl, for coff-sh.

gas/ChangeLog
gas/config/obj-coff.h

index bb99657..ada45b2 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-18  Daniel Jacobowitz  <drow@mvista.com>
+
+       * config/obj-coff.h: Check !target_big_endian, not shl, for coff-sh.
+
 2002-02-16  Nick Clifton  <nickc@cambridge.redhat.com>
 
        * doc/as.texinfo (Machine Dependencies): Fix typo: MMIX used
index 1a50359..8d2ae73 100644 (file)
 #define TARGET_FORMAT "pe-shl"
 #else
 
-#if 0 /* FIXME: The "shl" varaible does not appear to exist.  What happened to it ?  */
 #define TARGET_FORMAT                                  \
-  (shl                                                 \
+  (!target_big_endian                                  \
    ? (sh_small ? "coff-shl-small" : "coff-shl")                \
    : (sh_small ? "coff-sh-small" : "coff-sh"))
-#else
-#define TARGET_FORMAT                                  \
-   (sh_small ? "coff-shl-small" : "coff-shl") 
-#endif
 
 #endif
 #endif