From: Daniel Jacobowitz Date: Mon, 18 Feb 2002 23:57:10 +0000 (+0000) Subject: 2002-02-18 Daniel Jacobowitz X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c6503bf57c42405895f9a6c2d0d5ed7563369d14;p=pf3gnuchains%2Fpf3gnuchains3x.git 2002-02-18 Daniel Jacobowitz * config/obj-coff.h: Check !target_big_endian, not shl, for coff-sh. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index bb99657f7c..ada45b2384 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2002-02-18 Daniel Jacobowitz + + * config/obj-coff.h: Check !target_big_endian, not shl, for coff-sh. + 2002-02-16 Nick Clifton * doc/as.texinfo (Machine Dependencies): Fix typo: MMIX used diff --git a/gas/config/obj-coff.h b/gas/config/obj-coff.h index 1a50359b3b..8d2ae736ac 100644 --- a/gas/config/obj-coff.h +++ b/gas/config/obj-coff.h @@ -127,15 +127,10 @@ #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