safe-ctype.h (_sch_test): Cast enum bit to unsigned short int for pcc compatibility.
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>
Fri, 2 Mar 2001 01:17:23 +0000 (01:17 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 2 Mar 2001 01:17:23 +0000 (01:17 +0000)
* safe-ctype.h (_sch_test): Cast enum bit to unsigned short int for pcc
compatibility.

From-SVN: r40175

include/ChangeLog
include/safe-ctype.h

index 5326292a14402fe57fcc8f092657e94ca3f468aa..390139fc8a4a2030e3fbe28aa60edb1e5186c3c0 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-01  John David Anglin  <dave@hiauly1.hia.nrc.ca>
+
+       * safe-ctype.h (_sch_test): Cast enum bit to unsigned short int for pcc
+       compatibility.
+
 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
 
        * COPYING: Update to current
index d5fc649051a3c10ed62acfe0de16f4dc3be3d968..ccacda5b31bcda2619eba0afeeff30bde95213f9 100644 (file)
@@ -1,6 +1,6 @@
 /* <ctype.h> replacement macros.
 
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
    Contributed by Zack Weinberg <zackw@stanford.edu>.
 
 This file is part of the libiberty library.
@@ -69,7 +69,7 @@ enum {
 /* Character classification.  */
 extern const unsigned short _sch_istable[256];
 
-#define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (bit))
+#define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit))
 
 #define ISALPHA(c)  _sch_test(c, _sch_isalpha)
 #define ISALNUM(c)  _sch_test(c, _sch_isalnum)