Modularised vg_transtab.c as m_transtab.

Renamed add_to_trans_tab() as add_to_transtab() for consistency
with the other names.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3703 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/m_translate.c b/coregrind/m_translate.c
index fa717da..4ec0043 100644
--- a/coregrind/m_translate.c
+++ b/coregrind/m_translate.c
@@ -32,6 +32,8 @@
 #include "core.h"
 #include "pub_core_aspacemgr.h"
 #include "pub_core_tooliface.h"
+#include "pub_core_translate.h"
+#include "pub_core_transtab.h"
 
 
 /*------------------------------------------------------------*/
@@ -496,10 +498,10 @@
    if (!debugging_translation) {
       // Note that we use orig_addr0, not orig_addr, which might have been
       // changed by the redirection
-      VG_(add_to_trans_tab)( &vge,
-                             orig_addr0,
-                             (Addr)(&tmpbuf[0]), 
-                             tmpbuf_used );
+      VG_(add_to_transtab)( &vge,
+                            orig_addr0,
+                            (Addr)(&tmpbuf[0]), 
+                            tmpbuf_used );
    }
 
    VGP_POPCC(VgpTranslate);