aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/powerpc/i64_utof.s
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2017-08-25 14:55:22 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2017-08-25 14:55:22 +0200
commit4affb2b02e486681b39add0dbaf4f873a91885c8 (patch)
tree06b045ee98934b00c341071758c9b905ecad057f /runtime/powerpc/i64_utof.s
parent95ed4ea7df3e4b05d623afb9cb65f0eb2653361b (diff)
downloadcompcert-kvx-4affb2b02e486681b39add0dbaf4f873a91885c8.tar.gz
compcert-kvx-4affb2b02e486681b39add0dbaf4f873a91885c8.zip
Prefixed runtime functions.
The runtime functions are prefixed with compcert in order to avoid potential clashes with runtime/builtin functions of other compilers. Bug 22062
Diffstat (limited to 'runtime/powerpc/i64_utof.s')
-rw-r--r--runtime/powerpc/i64_utof.s10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/powerpc/i64_utof.s b/runtime/powerpc/i64_utof.s
index 2617cbda..cdb2f867 100644
--- a/runtime/powerpc/i64_utof.s
+++ b/runtime/powerpc/i64_utof.s
@@ -39,8 +39,8 @@
### Conversion from unsigned long to single float
.balign 16
- .globl __i64_utof
-__i64_utof:
+ .globl __compcert_i64_utof
+__compcert_i64_utof:
mflr r9
# Check whether X < 2^53
andis. r0, r3, 0xFFE0 # test bits 53...63 of X
@@ -55,10 +55,10 @@ __i64_utof:
or r4, r4, r0 # correct bit number 12 of X
rlwinm r4, r4, 0, 0, 20 # set to 0 bits 0 to 11 of X
# Convert to double, then round to single
-1: bl __i64_utod
+1: bl __compcert_i64_utod
mtlr r9
frsp f1, f1
blr
- .type __i64_utof, @function
- .size __i64_utof, .-__i64_utof
+ .type __compcert_i64_utof, @function
+ .size __compcert_i64_utof, .-__compcert_i64_utof