Changes in uspace/lib/softfloat/softfloat.c [9521eca:cf02eaf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/softfloat.c
r9521eca rcf02eaf 1265 1265 } 1266 1266 1267 float __aeabi_d2f(double a)1268 {1269 return __truncdfsf2(a);1270 }1271 1272 double __aeabi_f2d(float a)1273 {1274 return __extendsfdf2(a);1275 }1276 1277 1278 1267 float __aeabi_i2f(int i) 1279 1268 { … … 1296 1285 } 1297 1286 1298 double __aeabi_l2d(long long i)1299 {1300 return __floattidf(i);1301 }1302 1303 float __aeabi_l2f(long long i)1304 {1305 return __floattisf(i);1306 }1307 1308 float __aeabi_ul2f(unsigned long long u)1309 {1310 return __floatuntisf(u);1311 }1312 1313 1287 int __aeabi_f2iz(float a) 1314 1288 { … … 1331 1305 } 1332 1306 1333 long long __aeabi_d2lz(double a)1334 {1335 return __fixdfti(a);1336 }1337 1338 1307 int __aeabi_fcmpge(float a, float b) 1339 1308 { … … 1370 1339 return __ltdf2(a, b); 1371 1340 } 1372 1373 int __aeabi_dcmple(double a, double b)1374 {1375 return __ledf2(a, b);1376 }1377 1378 1341 1379 1342 int __aeabi_dcmpeq(double a, double b)
Note:
See TracChangeset
for help on using the changeset viewer.