diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-02-11 19:55:07 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-02-11 19:55:07 +0000 |
commit | 70406574fcfe67e062bbb8cbc2ca8aa8ae2642a2 (patch) | |
tree | 7c8d04360a1e4ea4ad8d22aff4c9d7b9cc100061 | |
parent | 7e42db17f9b49b8744758f286c3977305c62659e (diff) | |
download | gcc-70406574fcfe67e062bbb8cbc2ca8aa8ae2642a2.zip gcc-70406574fcfe67e062bbb8cbc2ca8aa8ae2642a2.tar.gz gcc-70406574fcfe67e062bbb8cbc2ca8aa8ae2642a2.tar.bz2 |
* config/ia64/hpux.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Define.
From-SVN: r94887
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/ia64/hpux.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 33f2560..dd6defd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-02-11 Joseph S. Myers <joseph@codesourcery.com> + + * config/ia64/hpux.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Define. + 2005-02-11 Dale Johannesen <dalej@apple.com> * cselib.c (cselib_process_insn): Clear out regs where diff --git a/gcc/config/ia64/hpux.h b/gcc/config/ia64/hpux.h index 9ae420f..4ed29bb 100644 --- a/gcc/config/ia64/hpux.h +++ b/gcc/config/ia64/hpux.h @@ -30,6 +30,12 @@ Boston, MA 02111-1307, USA. */ #undef TARGET_HPUX #define TARGET_HPUX 1 +#undef WCHAR_TYPE +#define WCHAR_TYPE "unsigned int" + +#undef WCHAR_TYPE_SIZE +#define WCHAR_TYPE_SIZE 32 + /* Target OS builtins. */ #define TARGET_OS_CPP_BUILTINS() \ do { \ |