summaryrefslogtreecommitdiffstats
path: root/target/microblaze/op_helper.c
diff options
context:
space:
mode:
authorRichard Henderson2016-11-16 10:58:52 +0100
committerRichard Henderson2017-01-10 17:06:11 +0100
commit5318420c62b6f6ce0bb7cfcf115fc21055015f90 (patch)
treed7d0db2f8170ddc80c5a2c8d7dd4b54699a3ee02 /target/microblaze/op_helper.c
parenttarget-cris: Use clz opcode (diff)
downloadqemu-5318420c62b6f6ce0bb7cfcf115fc21055015f90.tar.gz
qemu-5318420c62b6f6ce0bb7cfcf115fc21055015f90.tar.xz
qemu-5318420c62b6f6ce0bb7cfcf115fc21055015f90.zip
target-microblaze: Use clz opcode
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/microblaze/op_helper.c')
-rw-r--r--target/microblaze/op_helper.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/target/microblaze/op_helper.c b/target/microblaze/op_helper.c
index 4a856e6204..1e07e21c1c 100644
--- a/target/microblaze/op_helper.c
+++ b/target/microblaze/op_helper.c
@@ -145,11 +145,6 @@ uint32_t helper_cmpu(uint32_t a, uint32_t b)
return t;
}
-uint32_t helper_clz(uint32_t t0)
-{
- return clz32(t0);
-}
-
uint32_t helper_carry(uint32_t a, uint32_t b, uint32_t cf)
{
return compute_carry(a, b, cf);