diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-06-24 00:07:59 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-06-24 20:01:24 +0400 |
commit | 25b93db35810abf8c116ecc64831d62f4681a777 (patch) | |
tree | f23663294644ba472a2647a1b79797823295ced0 /target-unicore32/ucf64_helper.c | |
parent | 0d65942611263a37f79bc0522bf77bedbdf9ed20 (diff) |
target-unicore: Remove unused functions
The functions gen_st64, gen_ld64, gen_mulxy, ucf64_itod and
ucf64_dtoi are all unused; remove them.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'target-unicore32/ucf64_helper.c')
-rw-r--r-- | target-unicore32/ucf64_helper.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/target-unicore32/ucf64_helper.c b/target-unicore32/ucf64_helper.c index 0c7ea2693c..5af008fc6f 100644 --- a/target-unicore32/ucf64_helper.c +++ b/target-unicore32/ucf64_helper.c @@ -290,28 +290,6 @@ static inline uint32_t ucf64_stoi(float32 s) return v.i; } -static inline float64 ucf64_itod(uint64_t i) -{ - union { - uint64_t i; - float64 d; - } v; - - v.i = i; - return v.d; -} - -static inline uint64_t ucf64_dtoi(float64 d) -{ - union { - uint64_t i; - float64 d; - } v; - - v.d = d; - return v.i; -} - /* Integer to float conversion. */ float32 HELPER(ucf64_si2sf)(float32 x, CPUUniCore32State *env) { |