diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-06-10 20:26:38 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-06-10 20:26:38 +0000 |
commit | 2f2ecb83d7a52cc7239b33f3f9adc4a299dbeebe (patch) | |
tree | 60e1bbffcd8e7e7d330547e0066b2dbc35361ae5 /target-sparc | |
parent | f6d2a316d222953a25e357e141e374ef4d837079 (diff) |
Fix Sparc64 prefetcha op
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2978 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc')
-rw-r--r-- | target-sparc/translate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 8dbe3370fe..1993a4c892 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -2802,9 +2802,9 @@ static void disas_sparc_insn(DisasContext * dc) } #endif } - if (xop < 4 || (xop > 7 && xop < 0x14 && xop != 0x0e) || \ - (xop > 0x17 && xop <= 0x1d ) || \ - (xop > 0x2c && xop <= 0x33) || xop == 0x1f) { + if (xop < 4 || (xop > 7 && xop < 0x14 && xop != 0x0e) || + (xop > 0x17 && xop <= 0x1d ) || + (xop > 0x2c && xop <= 0x33) || xop == 0x1f || xop == 0x3d) { switch (xop) { case 0x0: /* load word */ gen_op_ldst(ld); |