Changeset 23b7c02 in mainline for uspace/lib/softfloat/softfloat.c
- Timestamp:
- 2013-09-04T06:58:57Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7664469
- Parents:
- caf5382 (diff), aa2a049 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/softfloat.c
rcaf5382 r23b7c02 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.