]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2002-02-18 Daniel Jacobowitz <drow@mvista.com>
authorDaniel Jacobowitz <drow@false.org>
Mon, 18 Feb 2002 23:54:47 +0000 (23:54 +0000)
committerDaniel Jacobowitz <drow@false.org>
Mon, 18 Feb 2002 23:54:47 +0000 (23:54 +0000)
        * config/obj-coff.h: Check !target_big_endian, not shl, for coff-sh.

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

index b1ba5b64bf250d8abc9f1541e9d9c7750d055c7c..882f2685a1842c5fb9273a906404a16a125c11bb 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-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
 
        * config/tc-hppa.c (hppa_fix_adjustable): Don't adjust final types
index 1a50359b3b5724819652fa15a7b44ed43dbc77d3..8d2ae736ac9686f1cb12bf583d011ecf93b748d3 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