Changeset 3558ba93 in mainline for uspace/lib/softfloat/softfloat.h
- Timestamp:
- 2013-12-09T15:55:40Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5b89d43b
- Parents:
- 12735849 (diff), 9521eca (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/softfloat.h
r12735849 r3558ba93 204 204 205 205 /* ARM EABI */ 206 extern float __aeabi_d2f(double); 207 extern double __aeabi_f2d(float); 206 208 extern float __aeabi_i2f(int); 207 209 extern float __aeabi_ui2f(int); 208 210 extern double __aeabi_i2d(int); 209 211 extern double __aeabi_ui2d(unsigned int); 212 extern double __aeabi_l2d(long long); 213 extern float __aeabi_l2f(long long); 214 extern float __aeabi_ul2f(unsigned long long); 210 215 extern unsigned int __aeabi_d2uiz(double); 216 extern long long __aeabi_d2lz(double); 211 217 212 218 extern int __aeabi_f2iz(float); … … 222 228 extern int __aeabi_dcmpgt(double, double); 223 229 extern int __aeabi_dcmplt(double, double); 230 extern int __aeabi_dcmple(double, double); 224 231 extern int __aeabi_dcmpeq(double, double); 225 232
Note:
See TracChangeset
for help on using the changeset viewer.