diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2017-06-04 22:20:32 +0200 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2017-06-06 15:25:14 -0700 |
commit | e22dfdb28dbba83d97ea6b40652ccccd7c60365d (patch) | |
tree | 275a8d654646572e77dbfa378eb0a5de343c850a /target/s390x/translate.c | |
parent | 4065ae7634601dfd8be8138fdad5562f798c4f5c (diff) | |
download | qemu-e22dfdb28dbba83d97ea6b40652ccccd7c60365d.zip |
target/s390x: implement LOAD PAIR FROM QUADWORD
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Message-Id: <20170604202034.16615-2-aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/s390x/translate.c')
-rw-r--r-- | target/s390x/translate.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target/s390x/translate.c b/target/s390x/translate.c index 9f3443ed6f..10019edd53 100644 --- a/target/s390x/translate.c +++ b/target/s390x/translate.c @@ -2909,6 +2909,13 @@ static ExitStatus op_lpd(DisasContext *s, DisasOps *o) return NO_EXIT; } +static ExitStatus op_lpq(DisasContext *s, DisasOps *o) +{ + gen_helper_lpq(o->out, cpu_env, o->in2); + return_low128(o->out2); + return NO_EXIT; +} + #ifndef CONFIG_USER_ONLY static ExitStatus op_lura(DisasContext *s, DisasOps *o) { |