Changes in uspace/lib/softfloat/softfloat.c [cf02eaf:9521eca] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/softfloat.c
rcf02eaf r9521eca 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 1267 1278 float __aeabi_i2f(int i) 1268 1279 { … … 1285 1296 } 1286 1297 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 1287 1313 int __aeabi_f2iz(float a) 1288 1314 { … … 1305 1331 } 1306 1332 1333 long long __aeabi_d2lz(double a) 1334 { 1335 return __fixdfti(a); 1336 } 1337 1307 1338 int __aeabi_fcmpge(float a, float b) 1308 1339 { … … 1339 1370 return __ltdf2(a, b); 1340 1371 } 1372 1373 int __aeabi_dcmple(double a, double b) 1374 { 1375 return __ledf2(a, b); 1376 } 1377 1341 1378 1342 1379 int __aeabi_dcmpeq(double a, double b)
Note:
See TracChangeset
for help on using the changeset viewer.