Changeset ac8b096 in mainline for uspace/lib/softfloat/softfloat.c
- Timestamp:
- 2013-08-16T16:19:24Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3b05380b
- Parents:
- e5bc912
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/softfloat.c
re5bc912 rac8b096 1265 1265 } 1266 1266 1267 1268 float __aeabi_i2f(int i) 1269 { 1270 return __floatsisf(i); 1271 } 1272 1273 float __aeabi_ui2f(int i) 1274 { 1275 return __floatunsisf(i); 1276 } 1277 1267 1278 double __aeabi_i2d(int i) 1268 1279 { … … 1280 1291 } 1281 1292 1293 int __aeabi_f2uiz(float a) 1294 { 1295 return __fixunssfsi(a); 1296 } 1297 1282 1298 int __aeabi_d2iz(double a) 1283 1299 { … … 1288 1304 { 1289 1305 return __fixunsdfsi(a); 1306 } 1307 1308 int __aeabi_fcmpge(float a, float b) 1309 { 1310 return __gesf2(a, b); 1311 } 1312 1313 int __aeabi_fcmpgt(float a, float b) 1314 { 1315 return __gtsf2(a, b); 1316 } 1317 1318 int __aeabi_fcmplt(float a, float b) 1319 { 1320 return __ltsf2(a, b); 1321 } 1322 1323 int __aeabi_fcmpeq(float a, float b) 1324 { 1325 return __eqsf2(a, b); 1290 1326 } 1291 1327
Note:
See TracChangeset
for help on using the changeset viewer.