aboutsummaryrefslogtreecommitdiff
path: root/target/unicore32/helper.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2016-11-16 11:40:39 +0100
committerRichard Henderson <rth@twiddle.net>2017-01-10 08:06:11 -0800
commit03a733dc62de8bcf85bba59ac2776ed3d4adcbf1 (patch)
tree0d360717bb7680fbb005bbb705c3a5c003f51210 /target/unicore32/helper.c
parent0efa8208544e3e5984d7089ec751d3fbcfd43156 (diff)
downloadqemu-03a733dc62de8bcf85bba59ac2776ed3d4adcbf1.zip
qemu-03a733dc62de8bcf85bba59ac2776ed3d4adcbf1.tar.gz
qemu-03a733dc62de8bcf85bba59ac2776ed3d4adcbf1.tar.bz2
target-unicore32: Use clz opcode
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/unicore32/helper.c')
-rw-r--r--target/unicore32/helper.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/target/unicore32/helper.c b/target/unicore32/helper.c
index d603bde..7a5613e 100644
--- a/target/unicore32/helper.c
+++ b/target/unicore32/helper.c
@@ -32,16 +32,6 @@ UniCore32CPU *uc32_cpu_init(const char *cpu_model)
return UNICORE32_CPU(cpu_generic_init(TYPE_UNICORE32_CPU, cpu_model));
}
-uint32_t HELPER(clo)(uint32_t x)
-{
- return clo32(x);
-}
-
-uint32_t HELPER(clz)(uint32_t x)
-{
- return clz32(x);
-}
-
#ifndef CONFIG_USER_ONLY
void helper_cp0_set(CPUUniCore32State *env, uint32_t val, uint32_t creg,
uint32_t cop)