diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-14 18:30:32 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-14 18:30:32 +0000 |
commit | 0df5bdbe0f5125aa6b8f49ceb9336827975552e3 (patch) | |
tree | b2b64486d74ef4c0c3ecefa7c8f3e4b60a868f1f /target-ppc/op.c | |
parent | cfdcd37aa5d98d42fbe50e9e5c694b2498ec57a0 (diff) |
ppc: Convert op_andi to TCG
Replace op_andi_... with tcg_gen_andi_tl.
Signed-off-by: Andreas Faerber <andreas.faerber@web.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5218 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r-- | target-ppc/op.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c index 95ab8b9fe7..64166595cf 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -1153,33 +1153,6 @@ void OPPROTO op_andc (void) RETURN(); } -/* andi. */ -void OPPROTO op_andi_T0 (void) -{ - T0 &= (uint32_t)PARAM1; - RETURN(); -} - -void OPPROTO op_andi_T1 (void) -{ - T1 &= (uint32_t)PARAM1; - RETURN(); -} - -#if defined(TARGET_PPC64) -void OPPROTO op_andi_T0_64 (void) -{ - T0 &= ((uint64_t)PARAM1 << 32) | (uint64_t)PARAM2; - RETURN(); -} - -void OPPROTO op_andi_T1_64 (void) -{ - T1 &= ((uint64_t)PARAM1 << 32) | (uint64_t)PARAM2; - RETURN(); -} -#endif - /* count leading zero */ void OPPROTO op_cntlzw (void) { |