diff options
author | Andreas Tobler <a.tobler@schweiz.ch> | 2004-12-03 16:47:44 +0100 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2004-12-03 16:47:44 +0100 |
commit | 9c7956fd00a3e064d98ac51090cbe5aa55b9336c (patch) | |
tree | e3d5de134b4d82b5363ab3243e9c78a94cb81fa9 /gcc | |
parent | d6c2b67dea0b9a24b14cba657f73ff8914768e8f (diff) | |
download | gcc-9c7956fd00a3e064d98ac51090cbe5aa55b9336c.zip gcc-9c7956fd00a3e064d98ac51090cbe5aa55b9336c.tar.gz gcc-9c7956fd00a3e064d98ac51090cbe5aa55b9336c.tar.bz2 |
rs6000.c (rs6000_override_options): Protect darwin_one_byte_bool with #if.
2004-12-03 Andreas Tobler <a.tobler@schweiz.ch>
* config/rs6000/rs6000.c (rs6000_override_options): Protect
darwin_one_byte_bool with #if.
From-SVN: r91686
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ad5bda..2aab1af 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-12-03 Andreas Tobler <a.tobler@schweiz.ch> + + * config/rs6000/rs6000.c (rs6000_override_options): Protect + darwin_one_byte_bool with #if. + 2004-12-03 Paolo Bonzini <bonzini@gnu.org> * doc/tm.texi (Misc): Document TARGET_FOLD_BUILTIN. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 807f553..9c07a92 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. */ |