]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Un-break all non x86/amd64 targets following r11786, duh.
authorJulian Seward <jseward@acm.org>
Mon, 30 May 2011 06:29:39 +0000 (06:29 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 30 May 2011 06:29:39 +0000 (06:29 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11789

coregrind/m_translate.c

index 0a41cd891d144a125b5bba17f5b7e220443ba3c1..36e5d8da78ef4b388eeb2f3a330fa8af6d20f6f1 100644 (file)
@@ -1544,8 +1544,11 @@ Bool VG_(translate) ( ThreadId tid,
 
 #  elif defined(VGA_ppc32) || defined(VGA_ppc64) \
         || defined(VGA_arm) || defined(VGA_s390x)
-   /* See comment libvex.h; machine has link register --> dipatch = NULL */
-   vta.dispatch = NULL;
+   /* See comment in libvex.h.  This target uses a
+      return-to-link-register scheme to get back to the dispatcher, so
+      both fields are NULL. */
+   vta.dispatch_assisted   = NULL;
+   vta.dispatch_unassisted = NULL;
 
 #  else
 #    error "Unknown arch"