summaryrefslogtreecommitdiff
path: root/target-ppc/op_template.h
diff options
context:
space:
mode:
authorj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-31 22:02:17 +0000
committerj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-31 22:02:17 +0000
commitfc0d441e14f07a35f9ea67ac8ca032a2ea902b38 (patch)
treed4a93196453e54252f08e88067000b195d8c10ef /target-ppc/op_template.h
parenta79ee211ceee191de97d0862a93128e7688a2843 (diff)
downloadqemu-fc0d441e14f07a35f9ea67ac8ca032a2ea902b38.tar.gz
Fix CR ops with complement, thanks to Julian Seward for testing
and reporting the bug : * remove bugged CR ops specific micro-ops * use standard and / or / shift operations instead * comment not-used-anymore op_store_T1_crf_crf micro-op template. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3501 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op_template.h')
-rw-r--r--target-ppc/op_template.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/target-ppc/op_template.h b/target-ppc/op_template.h
index bdd8844323..51f9b3681b 100644
--- a/target-ppc/op_template.h
+++ b/target-ppc/op_template.h
@@ -159,11 +159,13 @@ void OPPROTO glue(op_store_T0_crf_crf, REG) (void)
RETURN();
}
+#if 0 // Unused
void OPPROTO glue(op_store_T1_crf_crf, REG) (void)
{
env->crf[REG] = T1;
RETURN();
}
+#endif
#endif /* REG <= 7 */