demangle.h (demangler_engine): Constify.

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
This commit is contained in:
Kaveh R. Ghazi 2000-05-04 18:21:03 +00:00 committed by Kaveh Ghazi
parent 1cea04347c
commit a85a47fbf4
4 changed files with 17 additions and 6 deletions

View 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> Thu May 4 17:15:26 2000 Philippe De Muyter <phdm@macqel.be>
* sort.h (sys/types.h): File included unconditionnaly. * sort.h (sys/types.h): File included unconditionnaly.

View File

@ -83,9 +83,9 @@ extern enum demangling_styles
extern struct demangler_engine extern struct demangler_engine
{ {
char *demangling_style_name; const char *demangling_style_name;
enum demangling_styles demangling_style; enum demangling_styles demangling_style;
char *demangling_style_doc; const char *demangling_style_doc;
} libiberty_demanglers[]; } libiberty_demanglers[];
extern char * extern char *

View 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> Thu May 4 17:14:41 2000 Philippe De Muyter <phdm@macqel.be>
* sort.c (UCHAR_MAX): Provide fallback definition. * sort.c (UCHAR_MAX): Provide fallback definition.

View File

@ -679,8 +679,8 @@ cplus_demangle_opname (opname, result, options)
} }
} }
else if (opname[0] == '_' && opname[1] == '_' else if (opname[0] == '_' && opname[1] == '_'
&& islower(opname[2]) && islower((unsigned char)opname[2])
&& islower(opname[3])) && islower((unsigned char)opname[3]))
{ {
if (opname[4] == '\0') if (opname[4] == '\0')
{ {
@ -4266,8 +4266,8 @@ demangle_function_name (work, mangled, declp, scan)
} }
} }
else if (declp->b[0] == '_' && declp->b[1] == '_' else if (declp->b[0] == '_' && declp->b[1] == '_'
&& islower(declp->b[2]) && islower((unsigned char)declp->b[2])
&& islower(declp->b[3])) && islower((unsigned char)declp->b[3]))
{ {
if (declp->b[4] == '\0') if (declp->b[4] == '\0')
{ {
@ -4480,6 +4480,7 @@ static int flags = DMGL_PARAMS | DMGL_ANSI;
static void demangle_it PARAMS ((char *)); static void demangle_it PARAMS ((char *));
static void usage PARAMS ((FILE *, int)) ATTRIBUTE_NORETURN; static void usage PARAMS ((FILE *, int)) ATTRIBUTE_NORETURN;
static void fatal PARAMS ((const char *)) ATTRIBUTE_NORETURN; static void fatal PARAMS ((const char *)) ATTRIBUTE_NORETURN;
static void print_demangler_list PARAMS ((FILE *));
static void static void
demangle_it (mangled_name) demangle_it (mangled_name)