aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/powerpc64/i64_utod.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/powerpc64/i64_utod.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/powerpc64/i64_utod.s')
-rw-r--r--runtime/powerpc64/i64_utod.s8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/powerpc64/i64_utod.s b/runtime/powerpc64/i64_utod.s
index ddde91dd..491ee26b 100644
--- a/runtime/powerpc64/i64_utod.s
+++ b/runtime/powerpc64/i64_utod.s
@@ -39,8 +39,8 @@
### Conversion from unsigned long to double float
.balign 16
- .globl __i64_utod
-__i64_utod:
+ .globl __compcert_i64_utod
+__compcert_i64_utod:
rldicl r3, r3, 0, 32 # clear top 32 bits
rldicl r4, r4, 0, 32 # clear top 32 bits
lis r5, 0x4f80 # 0x4f80_0000 = 2^32 in binary32 format
@@ -55,8 +55,8 @@ __i64_utod:
fmadd f1, f1, f3, f2 # compute hi * 2^32 + lo
addi r1, r1, 32
blr
- .type __i64_utod, @function
- .size __i64_utod, .-__i64_utod
+ .type __compcert_i64_utod, @function
+ .size __compcert_i64_utod, .-__compcert_i64_utod
# Alternate implementation using round-to-odd:
# rldimi r4, r3, 32, 0 # reassemble (r3,r4) as a 64-bit integer in r4