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/addrcheck/ac_main.c b/addrcheck/ac_main.c
index d33564a..d51f400 100644
--- a/addrcheck/ac_main.c
+++ b/addrcheck/ac_main.c
@@ -746,34 +746,34 @@
 #  endif
 }
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 static void ach_LOAD4 ( Addr a )
 {
    ac_helperc_ACCESS4 ( a, /*isWrite*/False );
 }
-VGA_REGPARM(1)
+VG_REGPARM(1)
 static void ach_STORE4 ( Addr a )
 {
    ac_helperc_ACCESS4 ( a, /*isWrite*/True );
 }
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 static void ach_LOAD2 ( Addr a )
 {
    ac_helperc_ACCESS2 ( a, /*isWrite*/False );
 }
-VGA_REGPARM(1)
+VG_REGPARM(1)
 static void ach_STORE2 ( Addr a )
 {
    ac_helperc_ACCESS2 ( a, /*isWrite*/True );
 }
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 static void ach_LOAD1 ( Addr a )
 {
    ac_helperc_ACCESS1 ( a, /*isWrite*/False );
 }
-VGA_REGPARM(1)
+VG_REGPARM(1)
 static void ach_STORE1 ( Addr a )
 {
    ac_helperc_ACCESS1 ( a, /*isWrite*/True );
@@ -943,13 +943,13 @@
 #  endif
 }
 
-VGA_REGPARM(2)
+VG_REGPARM(2)
 static void ach_LOADN ( Addr addr, SizeT size )
 {
    ac_fpu_ACCESS_check ( addr, size, /*isWrite*/False );
 }
 
-VGA_REGPARM(2)
+VG_REGPARM(2)
 static void ach_STOREN ( Addr addr, SizeT size )
 {
    ac_fpu_ACCESS_check ( addr, size, /*isWrite*/True );