From: Andreas Tobler Date: Fri, 3 Dec 2004 15:47:44 +0000 (+0100) Subject: rs6000.c (rs6000_override_options): Protect darwin_one_byte_bool with #if. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c7956fd00a3e064d98ac51090cbe5aa55b9336c;p=gcc.git rs6000.c (rs6000_override_options): Protect darwin_one_byte_bool with #if. 2004-12-03 Andreas Tobler * config/rs6000/rs6000.c (rs6000_override_options): Protect darwin_one_byte_bool with #if. From-SVN: r91686 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ad5bda34fc..2aab1af8e79 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-12-03 Andreas Tobler + + * config/rs6000/rs6000.c (rs6000_override_options): Protect + darwin_one_byte_bool with #if. + 2004-12-03 Paolo Bonzini * doc/tm.texi (Misc): Document TARGET_FOLD_BUILTIN. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 807f5535faf..9c07a92b566 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -1303,7 +1303,9 @@ rs6000_override_options (const char *default_cpu) { rs6000_darwin64_abi = 1; /* Setting to empty string is same as "-mone-byte-bool". */ +#if TARGET_MACHO darwin_one_byte_bool = ""; +#endif } /* Handle -mabi= options. */