Changeset 874381a in mainline
- Timestamp:
- 2018-03-20T20:47:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eadaeae8
- Parents:
- 3212921
- Location:
- uspace/lib/softfloat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/conversion.c
r3212921 r874381a 1110 1110 } 1111 1111 1112 int64_t __aeabi_f2lz(float32_t a) 1113 { 1114 float32_u ua; 1115 ua.val = a; 1116 1117 return float32_to_int64(ua.data); 1118 } 1119 1112 1120 uint32_t __aeabi_f2uiz(float32_t a) 1113 1121 { -
uspace/lib/softfloat/conversion.h
r3212921 r874381a 111 111 extern uint64_t __fixunssfdi(float32_t); 112 112 extern int32_t __aeabi_f2iz(float32_t); 113 extern int64_t __aeabi_f2lz(float32_t); 113 114 extern uint32_t __aeabi_f2uiz(float32_t); 114 115 extern float32_t __aeabi_i2f(int32_t);
Note:
See TracChangeset
for help on using the changeset viewer.