diff options
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 3bb8095..50f353a 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -71,6 +71,16 @@ void do_restore_state (void *pc_ptr) } } +void do_clo (void) +{ + T0 = clo32(T0); +} + +void do_clz (void) +{ + T0 = clz32(T0); +} + #if defined(TARGET_MIPS64) #if TARGET_LONG_BITS > HOST_LONG_BITS /* Those might call libgcc functions. */ |