Changes in uspace/lib/softfloat/softfloat.c [cf02eaf:2416085] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/softfloat.c
rcf02eaf r2416085 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 1277 1267 double __aeabi_i2d(int i) 1278 1268 { … … 1290 1280 } 1291 1281 1292 int __aeabi_f2uiz(float a)1293 {1294 return __fixunssfsi(a);1295 }1296 1297 1282 int __aeabi_d2iz(double a) 1298 1283 { … … 1303 1288 { 1304 1289 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);1325 1290 } 1326 1291
Note:
See TracChangeset
for help on using the changeset viewer.