Removed the VGA_/VGO_/VGP_ prefixes for arch/OS/platform-specific
things.  These made sense when the arch/OS/platform-specific code was in
one module, but as that code got mixed in with generic code the boundary
between generic and non-generic blurred, and the distinction made less
sense.  So let's get rid of them.




git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4002 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c
index a92d15d..a0e3b0c 100644
--- a/coregrind/m_machine.c
+++ b/coregrind/m_machine.c
@@ -34,9 +34,9 @@
 #include "pub_core_libcbase.h"
 #include "pub_core_machine.h"
 
-#define INSTR_PTR(regs)    ((regs).vex.VGA_INSTR_PTR)
-#define STACK_PTR(regs)    ((regs).vex.VGA_STACK_PTR)
-#define FRAME_PTR(regs)    ((regs).vex.VGA_FRAME_PTR)
+#define INSTR_PTR(regs)    ((regs).vex.VG_INSTR_PTR)
+#define STACK_PTR(regs)    ((regs).vex.VG_STACK_PTR)
+#define FRAME_PTR(regs)    ((regs).vex.VG_FRAME_PTR)
 
 Addr VG_(get_SP) ( ThreadId tid )
 {