This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Don't define MAX_WCHAR_TYPE_SIZE on PA


Definition of MAX_WCHAR_TYPE_SIZE is unnecessary.  The default definition
is fine.  Tested with bootstrap with no regressions on hppa2.0w-hp-hpux.
Applied to main.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)

2002-05-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>

	* pa/pa-64.h (MAX_WCHAR_TYPE_SIZE): Delete.
	* pa/pa.h (MAX_WCHAR_TYPE_SIZE): Delete.

Index: config/pa/pa-64.h
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/config/pa/pa-64.h,v
retrieving revision 1.9
diff -u -3 -p -r1.9 pa-64.h
--- config/pa/pa-64.h	17 Dec 2001 15:05:36 -0000	1.9
+++ config/pa/pa-64.h	8 May 2002 22:23:04 -0000
@@ -69,7 +69,6 @@ Boston, MA 02111-1307, USA.  */
    FP codes supplied by HP we'll keep it at 64 bits.  */
 #undef LONG_DOUBLE_TYPE_SIZE
 #define LONG_DOUBLE_TYPE_SIZE 64
-#define MAX_WCHAR_TYPE_SIZE 32
 
 /* Temporary until we figure out what to do with those *(&@$ 32bit
    relocs which appear in stabs.  */
Index: config/pa/pa.h
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/config/pa/pa.h,v
retrieving revision 1.151
diff -u -3 -p -r1.151 pa.h
--- config/pa/pa.h	1 May 2002 23:17:57 -0000	1.151
+++ config/pa/pa.h	8 May 2002 22:23:04 -0000
@@ -393,7 +393,6 @@ extern int target_flags;
 
 #define MAX_BITS_PER_WORD 64
 #define MAX_LONG_TYPE_SIZE 32
-#define MAX_WCHAR_TYPE_SIZE 32
 
 /* Width of a word, in units (bytes).  */
 #define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]