|
From: Dirk M. <mu...@kd...> - 2005-07-27 06:56:16
|
SVN commit 439112 by mueller:
fix compilation
M +4 -4 vg_stabs.c =20
--- trunk/valgrind/coregrind/vg_stabs.c #439111:439112
@@ -311,7 +311,7 @@
return &sf->types[sym];
}
=20
-static Bool isdigit(Char c, Int base, Int *vp)
+static Bool isdigit_base(Char c, Int base, Int *vp)
{
Bool ret =3D False;
Int v =3D 0;
@@ -382,7 +382,7 @@
if (base =3D=3D 0)
base =3D getbase(&p);
=20
- while(isdigit(*p, base, &v)) {
+ while(isdigit_base(*p, base, &v)) {
ret *=3D base;
ret +=3D v;
p++;
@@ -403,7 +403,7 @@
if (base =3D=3D 0)
base =3D getbase(&p);
=20
- while(isdigit(*p, base, &v)) {
+ while(isdigit_base(*p, base, &v)) {
ret *=3D base;
ret +=3D v;
p++;
@@ -646,7 +646,7 @@
case -27: type =3D VG_(st_mkint)(def, 1, True); break;
case -28: type =3D VG_(st_mkint)(def, 2, True); break;
case -29: type =3D VG_(st_mkint)(def, 4, True); break;
- case -30: type =3D ML_(st_mkint)(def, 2, False); break;
+ case -30: type =3D VG_(st_mkint)(def, 2, False); break;
case -31: type =3D VG_(st_mkint)(def, 8, True); break;
case -32: type =3D VG_(st_mkint)(def, 8, False); break;
case -33: type =3D VG_(st_mkint)(def, 8, False); break;
|