Changeset 8b863a62 in mainline for uspace/lib/softfloat/softfloat.h
- Timestamp:
- 2014-04-16T17:14:06Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f857e8b
- Parents:
- dba3e2c (diff), 70b570c (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
rdba3e2c r8b863a62 204 204 205 205 /* ARM EABI */ 206 extern float __aeabi_d2f(double); 207 extern double __aeabi_f2d(float); 208 extern float __aeabi_i2f(int); 209 extern float __aeabi_ui2f(int); 206 210 extern double __aeabi_i2d(int); 207 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); 208 215 extern unsigned int __aeabi_d2uiz(double); 216 extern long long __aeabi_d2lz(double); 209 217 210 218 extern int __aeabi_f2iz(float); 219 extern int __aeabi_f2uiz(float); 211 220 extern int __aeabi_d2iz(double); 221 222 extern int __aeabi_fcmpge(float, float); 223 extern int __aeabi_fcmpgt(float, float); 224 extern int __aeabi_fcmplt(float, float); 225 extern int __aeabi_fcmpeq(float, float); 212 226 213 227 extern int __aeabi_dcmpge(double, double); 214 228 extern int __aeabi_dcmpgt(double, double); 215 229 extern int __aeabi_dcmplt(double, double); 230 extern int __aeabi_dcmple(double, double); 216 231 extern int __aeabi_dcmpeq(double, double); 217 232
Note:
See TracChangeset
for help on using the changeset viewer.