Ignore:
File:
1 edited

Legend:

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

    rcf02eaf r2416085  
    12651265}
    12661266
    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 
    12771267double __aeabi_i2d(int i)
    12781268{
     
    12901280}
    12911281
    1292 int __aeabi_f2uiz(float a)
    1293 {
    1294         return __fixunssfsi(a);
    1295 }
    1296 
    12971282int __aeabi_d2iz(double a)
    12981283{
     
    13031288{
    13041289        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);
    13251290}
    13261291
Note: See TracChangeset for help on using the changeset viewer.