diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-21 02:04:15 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-21 02:04:15 +0000 |
commit | 30898801ad8c70708ead392b243ca8bcd28ca722 (patch) | |
tree | 2a3c60c0c05b12bb3470ebd8c3832761b0b30069 /target-mips/helper.h | |
parent | 20c4c97c9b9bcc413371e1b78e7db5306eb7fdd6 (diff) |
Switch MIPS clo/clz and the condition tests to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4507 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/helper.h')
-rw-r--r-- | target-mips/helper.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-mips/helper.h b/target-mips/helper.h index ef6b9f93bc..98a97c9be2 100644 --- a/target-mips/helper.h +++ b/target-mips/helper.h @@ -1,3 +1,8 @@ void do_raise_exception_err(int excp, int err); void do_raise_exception(int excp); void do_interrupt_restart (void); + +void do_clo (void); +void do_clz (void); +void do_dclo (void); +void do_dclz (void); |