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