]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
demangle.h (demangler_engine): Constify.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Thu, 4 May 2000 18:21:03 +0000 (18:21 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Thu, 4 May 2000 18:21:03 +0000 (18:21 +0000)
include:
* demangle.h (demangler_engine): Constify.

libiberty:
* cplus-dem.c (cplus_demangle_opname, demangle_function_name):
Cast the arguments to `islower' to `unsigned char'.
(print_demangler_list): Prototype.

From-SVN: r33679

include/ChangeLog
include/demangle.h
libiberty/ChangeLog
libiberty/cplus-dem.c

index f448555417e120175808cfcc9d0e8cf3570fbc2d..438a7703fad443e3087e2039fb68656dd4036bc1 100644 (file)
@@ -1,3 +1,7 @@
+2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * demangle.h (demangler_engine): Constify.
+
 Thu May  4 17:15:26 2000  Philippe De Muyter  <phdm@macqel.be>
 
        * sort.h (sys/types.h): File included unconditionnaly.
index 2ebc2a5043f4beacf721daea688602747b2e3e23..dd0d9fcac0300b6580a0775fc31b06f53b61533e 100644 (file)
@@ -83,9 +83,9 @@ extern enum demangling_styles
 
 extern struct demangler_engine
 {
-  char *demangling_style_name;
+  const char *demangling_style_name;
   enum demangling_styles demangling_style;
-  char *demangling_style_doc;
+  const char *demangling_style_doc;
 } libiberty_demanglers[];
 
 extern char *
index 7dc83320d23e70405817c1f28bc1ec6c400d94c1..a0db63fecc477867f6e03889d5e0ae3b02d74f39 100644 (file)
@@ -1,3 +1,9 @@
+2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * cplus-dem.c (cplus_demangle_opname, demangle_function_name):
+       Cast the arguments to `islower' to `unsigned char'.
+       (print_demangler_list): Prototype.
+
 Thu May  4 17:14:41 2000  Philippe De Muyter  <phdm@macqel.be>
 
        * sort.c (UCHAR_MAX): Provide fallback definition.
index 4ea2c95832999f141e4b72282222015cfeb329b3..9ccce64e655b53f967aa95041bcb55fe4f77724c 100644 (file)
@@ -679,8 +679,8 @@ cplus_demangle_opname (opname, result, options)
        }
     }
   else if (opname[0] == '_' && opname[1] == '_'
-          && islower(opname[2])
-          && islower(opname[3]))
+          && islower((unsigned char)opname[2])
+          && islower((unsigned char)opname[3]))
     {
       if (opname[4] == '\0')
        {
@@ -4266,8 +4266,8 @@ demangle_function_name (work, mangled, declp, scan)
        }
     }
   else if (declp->b[0] == '_' && declp->b[1] == '_'
-          && islower(declp->b[2])
-          && islower(declp->b[3]))
+          && islower((unsigned char)declp->b[2])
+          && islower((unsigned char)declp->b[3]))
     {
       if (declp->b[4] == '\0')
        {
@@ -4480,6 +4480,7 @@ static int flags = DMGL_PARAMS | DMGL_ANSI;
 static void demangle_it PARAMS ((char *));
 static void usage PARAMS ((FILE *, int)) ATTRIBUTE_NORETURN;
 static void fatal PARAMS ((const char *)) ATTRIBUTE_NORETURN;
+static void print_demangler_list PARAMS ((FILE *));
 
 static void
 demangle_it (mangled_name)