Changes in uspace/lib/softfloat/softfloat.c [2416085:cf02eaf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/softfloat.c
r2416085 rcf02eaf 1265 1265 } 1266 1266 1267 float __aeabi_i2f(int i) 1268 { 1269 return __floatsisf(i); 1270 } 1271 1272 float __aeabi_ui2f(int i) 1273 { 1274 return __floatunsisf(i); 1275 } 1276 1267 1277 double __aeabi_i2d(int i) 1268 1278 { … … 1280 1290 } 1281 1291 1292 int __aeabi_f2uiz(float a) 1293 { 1294 return __fixunssfsi(a); 1295 } 1296 1282 1297 int __aeabi_d2iz(double a) 1283 1298 { … … 1288 1303 { 1289 1304 return __fixunsdfsi(a); 1305 } 1306 1307 int __aeabi_fcmpge(float a, float b) 1308 { 1309 return __gesf2(a, b); 1310 } 1311 1312 int __aeabi_fcmpgt(float a, float b) 1313 { 1314 return __gtsf2(a, b); 1315 } 1316 1317 int __aeabi_fcmplt(float a, float b) 1318 { 1319 return __ltsf2(a, b); 1320 } 1321 1322 int __aeabi_fcmpeq(float a, float b) 1323 { 1324 return __eqsf2(a, b); 1290 1325 } 1291 1326
Note:
See TracChangeset
for help on using the changeset viewer.