diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-24 11:28:19 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-24 11:28:19 +0000 |
commit | cab3bee2d6f1d6eb6ad74006b8a63562cda9ba4d (patch) | |
tree | 6c874d4b6f4a80c682e87ceaa31a326513e9ba2b /target-ppc/helper.h | |
parent | fe1e5c53fdd4e07fd217077dc6e03ad7d01d9839 (diff) |
target-ppc: convert trap instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5788 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/helper.h')
-rw-r--r-- | target-ppc/helper.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-ppc/helper.h b/target-ppc/helper.h index b543d32cd2..be6c6a0fe7 100644 --- a/target-ppc/helper.h +++ b/target-ppc/helper.h @@ -2,6 +2,10 @@ DEF_HELPER_2(raise_exception_err, void, i32, i32) DEF_HELPER_0(raise_debug, void) +DEF_HELPER_3(tw, void, tl, tl, i32) +#if defined(TARGET_PPC64) +DEF_HELPER_3(td, void, tl, tl, i32) +#endif DEF_HELPER_2(fcmpo, i32, i64, i64) DEF_HELPER_2(fcmpu, i32, i64, i64) |