diff options
author | David Hildenbrand <david@redhat.com> | 2019-05-29 22:25:34 +0200 |
---|---|---|
committer | David Hildenbrand <david@redhat.com> | 2019-06-07 14:53:26 +0200 |
commit | 658a395f6c41d72525f575de56fc9d4902161f2b (patch) | |
tree | 8cbf93e9da0163bf5ccf7634e2e7ae611572cb0c /target/s390x/translate_vx.inc.c | |
parent | 5938f20cb807b584799feef411a1906a9d8f7a1b (diff) | |
download | qemu-658a395f6c41d72525f575de56fc9d4902161f2b.zip |
s390x/tcg: Implement VECTOR FP SUBTRACT
Similar to VECTOR FP ADD.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'target/s390x/translate_vx.inc.c')
-rw-r--r-- | target/s390x/translate_vx.inc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/s390x/translate_vx.inc.c b/target/s390x/translate_vx.inc.c index 75f3596c4b..c0a19aa9f3 100644 --- a/target/s390x/translate_vx.inc.c +++ b/target/s390x/translate_vx.inc.c @@ -2566,6 +2566,9 @@ static DisasJumpType op_vfa(DisasContext *s, DisasOps *o) case 0xe7: fn = se ? gen_helper_gvec_vfm64s : gen_helper_gvec_vfm64; break; + case 0xe2: + fn = se ? gen_helper_gvec_vfs64s : gen_helper_gvec_vfs64; + break; default: g_assert_not_reached(); } |