diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-05 14:19:51 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-05 14:19:51 +0000 |
commit | 7c417963f7346cf4fdc2a0cc08bdeb0ee7165f8d (patch) | |
tree | 7dc0db7286e57f8f3ddf914bb5fdcc4f6a4c311e /target-ppc/op.c | |
parent | 39dd32eed2d56fd8f5f5cbdc16ec7fe2faae447a (diff) |
ppc: Convert op_subf to TCG
Replace op_subf with tcg_gen_sub_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@5168 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r-- | target-ppc/op.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c index 4ee411b81a..01b944bc7b 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -881,13 +881,6 @@ void OPPROTO op_nego_64 (void) } #endif -/* subtract from */ -void OPPROTO op_subf (void) -{ - T0 = T1 - T0; - RETURN(); -} - /* subtract from carrying */ void OPPROTO op_check_subfc (void) { |