|
From: <sv...@va...> - 2005-10-15 00:58:32
|
Author: sewardj
Date: 2005-10-15 01:58:26 +0100 (Sat, 15 Oct 2005)
New Revision: 4926
Log:
Unfortunately gcc4 doesn't like recently added prototypes. Comment
out for the time being.
Modified:
trunk/coregrind/m_debuginfo/symtypes.c
Modified: trunk/coregrind/m_debuginfo/symtypes.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_debuginfo/symtypes.c 2005-10-15 00:41:50 UTC (rev 4=
925)
+++ trunk/coregrind/m_debuginfo/symtypes.c 2005-10-15 00:58:26 UTC (rev 4=
926)
@@ -761,7 +761,7 @@
=20
/* Add a new variable to the list */
// (the declaration avoids a compiler warning)
- static void newvar(Char *name, SymType *ty, Addr valuep, UInt size);
+ //static void newvar(Char *name, SymType *ty, Addr valuep, UInt size);
void newvar(Char *name, SymType *ty, Addr valuep, UInt size) {
Variable *v;
=20
@@ -982,7 +982,7 @@
Char expr[len*2];
Char *sp =3D &expr[len]; /* pointer at start of string */
Char *ep =3D sp; /* pointer at end of string */
- static void genstring(Variable *v, Variable *inner); // avoid warning
+ // static void genstring(Variable *v, Variable *inner); // avoid war=
ning
void genstring(Variable *v, Variable *inner) {
Variable *c =3D v->container;
=20
|