|
From: <sv...@va...> - 2015-11-27 14:51:46
|
Author: petarj
Date: Fri Nov 27 14:51:33 2015
New Revision: 15740
Log:
mips: add missing "memory" to the clobber list
Add "memory" to the clobber arguments of VALGRIND_DO_CLIENT_REQUEST_EXPR.
This fixes memcheck/tests/vbit-test/vbit-test.
Modified:
trunk/include/valgrind.h
trunk/memcheck/tests/vbit-test/README
Modified: trunk/include/valgrind.h
==============================================================================
--- trunk/include/valgrind.h (original)
+++ trunk/include/valgrind.h Fri Nov 27 14:51:33 2015
@@ -946,7 +946,7 @@
"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 @@
"move %0, $11\n\t" /*result*/ \
: "=r" (_zzq_result) \
: "r" (_zzq_default), "r" (&_zzq_args[0]) \
- : "$11", "$12"); \
+ : "$11", "$12", "memory"); \
_zzq_result; \
})
Modified: trunk/memcheck/tests/vbit-test/README
==============================================================================
--- trunk/memcheck/tests/vbit-test/README (original)
+++ trunk/memcheck/tests/vbit-test/README Fri Nov 27 14:51:33 2015
@@ -97,6 +97,6 @@
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.
|