From 51b57ded888cbdacb5ad126363f8ae6adc9541b6 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Mon, 29 Jun 1992 23:34:38 +0000 Subject: * dbxread.c, i386-pinsn.c, i386-tdep.c, regex.c, solib.c, symmisc.c, symtab.h, tm-i386v4.h, valprint.c, values.c: Lint. * breakpoint.c, c-exp.y, coffread.c, command.c, environ.c, eval.c, findvar.c, infcmd.c, infptrace.c, infrun.c, m2-exp.y, parse.c, putenv.c, solib.c, sparc-xdep.c, symtab.c, tm-i386v.h, tm-sparc.h, utils.c, valarith.c, valops.c, valprint.c, values.c: Replace bcopy() use with memcpy(), which is more standard and can take advantage of gcc's builtin functions for increased performance. * breakpoint.c, buildsym.c, coffread.c, dbxread.c, i386-tdep.c, ieee-float.c, infcmd.c, sparc-tdep.c, stack.c, symtab.c, symtab.h, target.c, values.c: Replace bzero() use with memset(), which is more standard and can take advantage of gcc's builtin functions for increased performance. * i386-tdep.c, main.c, valprint.c: Replace bcmp() use with memcmp(), which is more standard and can take advantage of gcc's builtin functions for increased performance. --- gdb/regex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/regex.c') diff --git a/gdb/regex.c b/gdb/regex.c index 59695cf..e4261b3 100644 --- a/gdb/regex.c +++ b/gdb/regex.c @@ -122,6 +122,7 @@ static int obscure_syntax = 0; int re_set_syntax (syntax) + int syntax; { int ret; @@ -706,7 +707,7 @@ re_compile_fastmap (bufp) register char *fastmap = bufp->fastmap; register unsigned char *p = pattern; register unsigned char *pend = pattern + size; - register int j, k; + register int j; unsigned char *translate = (unsigned char *) bufp->translate; unsigned char *stackb[NFAILURES]; -- cgit v1.1