aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/s390x/mvo.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2022-03-08 17:09:18 +0000
committerPeter Maydell <peter.maydell@linaro.org>2022-03-08 17:09:18 +0000
commit9a61e6c7e1216a9a9d50e4f3973c1dcd5886b9d9 (patch)
treec3a0f7c575fd56dcfc4bec54e8d4ac491607e4c9 /tests/tcg/s390x/mvo.c
parent9740b907a5363c06ecf61e08b21966a81eb0dab4 (diff)
parent818e1636080768749dc826acd4825e71828ec7e6 (diff)
downloadqemu-9a61e6c7e1216a9a9d50e4f3973c1dcd5886b9d9.zip
qemu-9a61e6c7e1216a9a9d50e4f3973c1dcd5886b9d9.tar.gz
qemu-9a61e6c7e1216a9a9d50e4f3973c1dcd5886b9d9.tar.bz2
Merge remote-tracking branch 'remotes/thuth-gitlab/tags/pull-request-2022-03-07' into staging
* Fixes for s390x TCG tests * Update Haiku VM to a usable level * Some other miscellaneous small fixes # gpg: Signature made Mon 07 Mar 2022 18:07:00 GMT # gpg: using RSA key 27B88847EEE0250118F3EAB92ED9D774FE702DB5 # gpg: issuer "thuth@redhat.com" # gpg: Good signature from "Thomas Huth <th.huth@gmx.de>" [full] # gpg: aka "Thomas Huth <thuth@redhat.com>" [full] # gpg: aka "Thomas Huth <huth@tuxfamily.org>" [full] # gpg: aka "Thomas Huth <th.huth@posteo.de>" [unknown] # Primary key fingerprint: 27B8 8847 EEE0 2501 18F3 EAB9 2ED9 D774 FE70 2DB5 * remotes/thuth-gitlab/tags/pull-request-2022-03-07: Check and report for incomplete 'global' option format tests/vm: Update haiku test vm to R1/Beta3 tests/avocado: Cancel BootLinux tests in case there is no free port MAINTAINERS: Update the files in the FreeBSD section tests/tcg/s390x: Cleanup of mie3 tests. tests/tcg/s390x: Fix the exrl-trt* tests with Clang tests/tcg/s390x: Fix mvc, mvo and pack tests with Clang Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests/tcg/s390x/mvo.c')
-rw-r--r--tests/tcg/s390x/mvo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tcg/s390x/mvo.c b/tests/tcg/s390x/mvo.c
index 5546fe2..0c3ecdd 100644
--- a/tests/tcg/s390x/mvo.c
+++ b/tests/tcg/s390x/mvo.c
@@ -11,8 +11,8 @@ int main(void)
asm volatile (
" mvo 0(4,%[dest]),0(3,%[src])\n"
:
- : [dest] "d" (dest + 1),
- [src] "d" (src + 1)
+ : [dest] "a" (dest + 1),
+ [src] "a" (src + 1)
: "memory");
for (i = 0; i < sizeof(expected); i++) {