diff options
author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 19:51:50 +0000 |
---|---|---|
committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 19:51:50 +0000 |
commit | bb7e93c8845af1b8a65b5f71835fd4a3b820a458 (patch) | |
tree | 950966deaaa3c2739cae7243c485a3953b49e16e | |
parent | 580c6533e1ddcb30d8089a74c70e359786380ced (diff) | |
download | gcc-bb7e93c8845af1b8a65b5f71835fd4a3b820a458.tar.gz |
2001-08-28 Dale Johannesen <dalej@apple.com>
* config/rs6000/darwin.h (DEFAULT_SIGNED_CHAR): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45235 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/darwin.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b15c0b49796..0b74ebfc703 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-28 Dale Johannesen <dalej@apple.com> + + * config/rs6000/darwin.h (DEFAULT_SIGNED_CHAR): Define. + 2001-08-28 Danny Smith <dannysmith@users.sourceforge.net> * config/i386/cygwin.h (BIGGEST_FIELD_ALIGNMENT): Set to 64. diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index f7941131575..6e6a04f480e 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -148,6 +148,12 @@ Boston, MA 02111-1307, USA. */ #define ASM_OUTPUT_SPECIAL_POOL_ENTRY_P(X, MODE) 0 +/* Unlike most other PowerPC targets, chars are signed, for + consistency with other Darwin architectures. */ + +#undef DEFAULT_SIGNED_CHAR +#define DEFAULT_SIGNED_CHAR (1) + /* Given an rtx X being reloaded into a reg required to be in class CLASS, return the class of reg to actually use. In general this is just CLASS; but on some machines |