|
From: <sv...@va...> - 2005-05-14 21:51:53
|
Author: njn
Date: 2005-05-14 22:51:49 +0100 (Sat, 14 May 2005)
New Revision: 3712
Added:
trunk/coregrind/core_asm.h
Modified:
trunk/coregrind/Makefile.am
trunk/coregrind/core.h
trunk/coregrind/pub_core_debuglog.h
Log:
Whoops, a little premature in removing core_asm.h -- still need it
because it #includes tool_asm.h.
Modified: trunk/coregrind/Makefile.am
=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/Makefile.am 2005-05-14 21:44:20 UTC (rev 3711)
+++ trunk/coregrind/Makefile.am 2005-05-14 21:51:49 UTC (rev 3712)
@@ -37,6 +37,7 @@
=20
noinst_HEADERS =3D \
core.h \
+ core_asm.h \
pub_core_aspacemgr.h \
pub_core_debuglog.h \
pub_core_demangle.h \
Modified: trunk/coregrind/core.h
=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/core.h 2005-05-14 21:44:20 UTC (rev 3711)
+++ trunk/coregrind/core.h 2005-05-14 21:51:49 UTC (rev 3712)
@@ -83,7 +83,7 @@
*/
=20
#include "tool.h" // tool stuff
-#include "tool_asm.h" // XXX: temporary, for VG_() and friends
+#include "core_asm.h"
#include "core_arch.h" // arch-specific stuff, eg. x86/core_arch.h
=20
// Ugly: this is needed by linux/core_os.h
Added: trunk/coregrind/core_asm.h
=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/core_asm.h 2005-05-14 21:44:20 UTC (rev 3711)
+++ trunk/coregrind/core_asm.h 2005-05-14 21:51:49 UTC (rev 3712)
@@ -0,0 +1,2 @@
+// XXX: temporary only
+#include "tool_asm.h"
Modified: trunk/coregrind/pub_core_debuglog.h
=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/pub_core_debuglog.h 2005-05-14 21:44:20 UTC (rev 3711=
)
+++ trunk/coregrind/pub_core_debuglog.h 2005-05-14 21:51:49 UTC (rev 3712=
)
@@ -47,7 +47,7 @@
portable way to avoid using stdarg.h. */
#include <stdarg.h>
=20
-#include "tool_asm.h" /* For definition of VG_ macro */
+#include "core_asm.h" /* For definition of VG_ macro */
=20
/* There are no tool-visible exports from m_debuglog, hence no header
file for it. */
|