diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-06-19 21:21:40 -0700 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2020-07-03 11:15:59 +0200 |
commit | 9bf728a09bf7509b27543664f9cca6f4f337f608 (patch) | |
tree | 1ab9e156b990978fc5bb560b4062585f225d2f0e /target/s390x | |
parent | 64f0ad8ad8e13257e7c912df470d46784b55c3fd (diff) | |
download | qemu-9bf728a09bf7509b27543664f9cca6f4f337f608.zip qemu-9bf728a09bf7509b27543664f9cca6f4f337f608.tar.gz qemu-9bf728a09bf7509b27543664f9cca6f4f337f608.tar.bz2 |
target/s390x: Fix SQXBR
The output is 128-bit, and thus requires a pair of 64-bit temps.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Buglink: https://bugs.launchpad.net/bugs/1883984
Message-Id: <20200620042140.42070-1-richard.henderson@linaro.org>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x')
-rw-r--r-- | target/s390x/insn-data.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/insn-data.def b/target/s390x/insn-data.def index 91ddaed..d79ae9e 100644 --- a/target/s390x/insn-data.def +++ b/target/s390x/insn-data.def @@ -798,7 +798,7 @@ /* SQUARE ROOT */ F(0xb314, SQEBR, RRE, Z, 0, e2, new, e1, sqeb, 0, IF_BFP) F(0xb315, SQDBR, RRE, Z, 0, f2, new, f1, sqdb, 0, IF_BFP) - F(0xb316, SQXBR, RRE, Z, x2h, x2l, new, x1, sqxb, 0, IF_BFP) + F(0xb316, SQXBR, RRE, Z, x2h, x2l, new_P, x1, sqxb, 0, IF_BFP) F(0xed14, SQEB, RXE, Z, 0, m2_32u, new, e1, sqeb, 0, IF_BFP) F(0xed15, SQDB, RXE, Z, 0, m2_64, new, f1, sqdb, 0, IF_BFP) |