]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
mips: add missing "memory" to the clobber list
authorPetar Jovanovic <mips32r2@gmail.com>
Fri, 27 Nov 2015 14:51:33 +0000 (14:51 +0000)
committerPetar Jovanovic <mips32r2@gmail.com>
Fri, 27 Nov 2015 14:51:33 +0000 (14:51 +0000)
Add "memory" to the clobber arguments of VALGRIND_DO_CLIENT_REQUEST_EXPR.

This fixes memcheck/tests/vbit-test/vbit-test.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15740

include/valgrind.h
memcheck/tests/vbit-test/README

index c505f9f9be306d2b50f329a36f3f724ab977a359..511ae1c7e2526731ad288265062d42d9fad2f714 100644 (file)
@@ -946,7 +946,7 @@ typedef
                      "move %0, $11\n\t"     /*result*/            \
                      : "=r" (_zzq_result)                         \
                      : "r" (_zzq_default), "r" (&_zzq_args[0])    \
-                     : "$11", "$12");                             \
+                     : "$11", "$12", "memory");                   \
     _zzq_result;                                                  \
   })
 
@@ -1017,7 +1017,7 @@ typedef
                          "move %0, $11\n\t"     /*result*/          \
                          : "=r" (_zzq_result)                       \
                          : "r" (_zzq_default), "r" (&_zzq_args[0])  \
-                         : "$11", "$12");                           \
+                         : "$11", "$12", "memory");                 \
     _zzq_result;                                                    \
   })
 
index add93f81853e7f538bcc8da90fff642de67b5ea8..a5d1c63ee14d3b5591f5716d5a3f07a0466a0acd 100644 (file)
@@ -97,6 +97,6 @@ The following steps are needed
 
 Status
 ------
-vbit-test has been tested on x86-64, ppc64, s390x, and mips32.
+vbit-test has been tested on x86-64, ppc64, s390x, mips32 and mips64.
 There is support for other architectures in valgrind.h and guest_ARCH_toIR.c
 but it has not been tested.