|
From: <sv...@va...> - 2013-07-19 22:18:17
|
philippe 2013-07-19 23:18:02 +0100 (Fri, 19 Jul 2013)
New Revision: 13465
Log:
remove two not used global variables:
Addr VG_(client_base) = 0; /* client address space limits */
Addr VG_(client_end) = 0;
These 2 vars are unused, and there is a comment just before
telling:
// TODO: get rid of as many of these as possible.
So, let's do the easy part :)
Modified files:
trunk/coregrind/m_clientstate.c
Modified: trunk/coregrind/m_clientstate.c (+0 -3)
===================================================================
--- trunk/coregrind/m_clientstate.c 2013-07-18 12:22:10 +01:00 (rev 13464)
+++ trunk/coregrind/m_clientstate.c 2013-07-19 23:18:02 +01:00 (rev 13465)
@@ -44,9 +44,6 @@
/* Client address space, lowest to highest (see top of ume.c) */
// TODO: get rid of as many of these as possible.
-Addr VG_(client_base) = 0; /* client address space limits */
-Addr VG_(client_end) = 0;
-
Addr VG_(clstk_base) = 0;
Addr VG_(clstk_end) = 0;
UWord VG_(clstk_id) = 0;
|