Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softfloat/softfloat.c

    rac8b096 r2416085  
    12651265}
    12661266
    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 
    12781267double __aeabi_i2d(int i)
    12791268{
     
    12911280}
    12921281
    1293 int __aeabi_f2uiz(float a)
    1294 {
    1295         return __fixunssfsi(a);
    1296 }
    1297 
    12981282int __aeabi_d2iz(double a)
    12991283{
     
    13041288{
    13051289        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);
    13261290}
    13271291
Note: See TracChangeset for help on using the changeset viewer.