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/memcheck/mc_main.c b/memcheck/mc_main.c
index cb75c2f..a2e2e40 100644
--- a/memcheck/mc_main.c
+++ b/memcheck/mc_main.c
@@ -1472,7 +1472,7 @@
 
 /* ------------------------ Size = 8 ------------------------ */
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 ULong MC_(helperc_LOADV8) ( Addr aA )
 {
    PROF_EVENT(200, "helperc_LOADV8");
@@ -1516,7 +1516,7 @@
 #  endif
 }
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 void MC_(helperc_STOREV8) ( Addr aA, ULong vbytes )
 {
    PROF_EVENT(210, "helperc_STOREV8");
@@ -1563,7 +1563,7 @@
 
 /* ------------------------ Size = 4 ------------------------ */
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 UWord MC_(helperc_LOADV4) ( Addr aA )
 {
    PROF_EVENT(220, "helperc_LOADV4");
@@ -1614,7 +1614,7 @@
 #  endif
 }
 
-VGA_REGPARM(2)
+VG_REGPARM(2)
 void MC_(helperc_STOREV4) ( Addr aA, UWord vbytes )
 {
    PROF_EVENT(230, "helperc_STOREV4");
@@ -1662,7 +1662,7 @@
 
 /* ------------------------ Size = 2 ------------------------ */
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 UWord MC_(helperc_LOADV2) ( Addr aA )
 {
    PROF_EVENT(240, "helperc_LOADV2");
@@ -1710,7 +1710,7 @@
 #  endif
 }
 
-VGA_REGPARM(2)
+VG_REGPARM(2)
 void MC_(helperc_STOREV2) ( Addr aA, UWord vbytes )
 {
    PROF_EVENT(250, "helperc_STOREV2");
@@ -1755,7 +1755,7 @@
 
 /* ------------------------ Size = 1 ------------------------ */
 
-VGA_REGPARM(1)
+VG_REGPARM(1)
 UWord MC_(helperc_LOADV1) ( Addr aA )
 {
    PROF_EVENT(260, "helperc_LOADV1");
@@ -1803,7 +1803,7 @@
 }
 
 
-VGA_REGPARM(2)
+VG_REGPARM(2)
 void MC_(helperc_STOREV1) ( Addr aA, UWord vbyte )
 {
    PROF_EVENT(270, "helperc_STOREV1");
@@ -1872,7 +1872,7 @@
    mc_record_value_error ( VG_(get_running_tid)(), 8 );
 }
 
-VGA_REGPARM(1) void MC_(helperc_complain_undef) ( HWord sz )
+VG_REGPARM(1) void MC_(helperc_complain_undef) ( HWord sz )
 {
    mc_record_value_error ( VG_(get_running_tid)(), (Int)sz );
 }