diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-16 08:38:40 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-16 08:38:40 -0500 |
commit | 5258d7aeb281f575b93f295b63532df8cd12028e (patch) | |
tree | 7144fa13e5e81a3fca195a61cf84d2de1378ffcd | |
parent | 428fb713e6b598a29524f6be461a39b4ac54e86f (diff) | |
download | gcc-5258d7aeb281f575b93f295b63532df8cd12028e.zip gcc-5258d7aeb281f575b93f295b63532df8cd12028e.tar.gz gcc-5258d7aeb281f575b93f295b63532df8cd12028e.tar.bz2 |
(WCHAR_TYPE, WCHAR_TYPE_SIZE): Use unsigned int.
From-SVN: r11285
-rw-r--r-- | gcc/config/alpha/alpha.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 3581cbf..5f16f91 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler, for DEC Alpha. - Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu) This file is part of GNU CC. @@ -149,8 +149,8 @@ extern int target_flags; #define DOUBLE_TYPE_SIZE 64 #define LONG_DOUBLE_TYPE_SIZE 64 -#define WCHAR_TYPE "short unsigned int" -#define WCHAR_TYPE_SIZE 16 +#define WCHAR_TYPE "unsigned int" +#define WCHAR_TYPE_SIZE 32 /* Define this macro if it is advisable to hold scalars in registers in a wider mode than that declared by the program. In such cases, |