From: Doug Evans Date: Sun, 14 Apr 1996 03:43:53 +0000 (+0000) Subject: (TARGET_DEFAULT): Comment out TARGET_CPU_DEFAULT support for now. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0914718cc446236c5337cbff4a37f1accec57cca;p=platform%2Fupstream%2Fgcc.git (TARGET_DEFAULT): Comment out TARGET_CPU_DEFAULT support for now. (MULTLIB_DEFAULTS): Always little-endian for now. From-SVN: r11760 --- diff --git a/gcc/config/arm/coff.h b/gcc/config/arm/coff.h index 3af43e1..44108ce 100644 --- a/gcc/config/arm/coff.h +++ b/gcc/config/arm/coff.h @@ -30,9 +30,10 @@ Boston, MA 02111-1307, USA. */ point the default. NOT --nfp! --with{enable?} is supposed to replace it (right?), so let's stop using it. */ #undef TARGET_DEFAULT -#define TARGET_DEFAULT (ARM_FLAG_SOFT_FLOAT + TARGET_CPU_DEFAULT) +#define TARGET_DEFAULT (ARM_FLAG_SOFT_FLOAT /*+ TARGET_CPU_DEFAULT*/) -#if TARGET_CPU_DEFAULT & ARM_FLAG_BIG_END +/* ??? Is a big-endian default intended to be supported? */ +#if 0 /*TARGET_CPU_DEFAULT & ARM_FLAG_BIG_END*/ #define MULTILIB_DEFAULTS { "mbe", "mbig-endian" } #else #define MULTILIB_DEFAULTS { "mle", "mlittle-endian" }