Changeset 58775d30 in mainline for uspace/lib/softfloat/sub.h
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/sub.h
r6069061 r58775d30 37 37 #define __SUB_H__ 38 38 39 #include <mathtypes.h> 40 39 41 extern float32 sub_float32(float32, float32); 40 42 extern float64 sub_float64(float64, float64); … … 42 44 extern float128 sub_float128(float128, float128); 43 45 46 #ifdef float32_t 47 extern float32_t __subsf3(float32_t, float32_t); 48 extern float32_t __aeabi_fsub(float32_t, float32_t); 49 #endif 50 51 #ifdef float64_t 52 extern float64_t __subdf3(float64_t, float64_t); 53 extern float64_t __aeabi_dsub(float64_t, float64_t); 54 #endif 55 56 #ifdef float128_t 57 extern float128_t __subtf3(float128_t, float128_t); 58 extern void _Qp_sub(float128_t *, float128_t *, float128_t *); 59 #endif 60 44 61 #endif 45 62
Note:
See TracChangeset
for help on using the changeset viewer.