diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-27 13:05:54 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-27 13:05:54 +0000 |
commit | 05f778c8bdfa3f0499c3777f562db1feed338502 (patch) | |
tree | 024fe239018f00eb7d354e2604f13cdd01131e46 /target-mips/exec.h | |
parent | The other half of the mul64 rework. Sorry for the breakage, I committed (diff) | |
download | qemu-kvm-05f778c8bdfa3f0499c3777f562db1feed338502.tar.gz qemu-kvm-05f778c8bdfa3f0499c3777f562db1feed338502.tar.bz2 qemu-kvm-05f778c8bdfa3f0499c3777f562db1feed338502.zip |
Add sharable clz/clo inline functions and use them for the mips target.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3455 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/exec.h')
-rw-r--r-- | target-mips/exec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target-mips/exec.h b/target-mips/exec.h index c6dc25cf6..61c09acb6 100644 --- a/target-mips/exec.h +++ b/target-mips/exec.h @@ -70,6 +70,8 @@ void do_dsllv (void); void do_dsrav (void); void do_dsrlv (void); void do_drotrv (void); +void do_dclo (void); +void do_dclz (void); #endif #endif |