Changeset 802898f in mainline for uspace/lib/softfloat/softfloat.c


Ignore:
Timestamp:
2013-09-02T20:14:11Z (11 years ago)
Author:
Dominik Taborsky (AT DOT) <brembyseznamcz>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8c95dff
Parents:
0435fe41 (diff), 61ab4a9 (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.
Message:

mainline update

File:
1 edited

Legend:

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

    r0435fe41 r802898f  
    12651265}
    12661266
     1267float __aeabi_i2f(int i)
     1268{
     1269        return __floatsisf(i);
     1270}
     1271
     1272float __aeabi_ui2f(int i)
     1273{
     1274        return __floatunsisf(i);
     1275}
     1276
    12671277double __aeabi_i2d(int i)
    12681278{
     
    12801290}
    12811291
     1292int __aeabi_f2uiz(float a)
     1293{
     1294        return __fixunssfsi(a);
     1295}
     1296
    12821297int __aeabi_d2iz(double a)
    12831298{
     
    12881303{
    12891304        return __fixunsdfsi(a);
     1305}
     1306
     1307int __aeabi_fcmpge(float a, float b)
     1308{
     1309        return __gesf2(a, b);
     1310}
     1311
     1312int __aeabi_fcmpgt(float a, float b)
     1313{
     1314        return __gtsf2(a, b);
     1315}
     1316
     1317int __aeabi_fcmplt(float a, float b)
     1318{
     1319        return __ltsf2(a, b);
     1320}
     1321
     1322int __aeabi_fcmpeq(float a, float b)
     1323{
     1324        return __eqsf2(a, b);
    12901325}
    12911326
Note: See TracChangeset for help on using the changeset viewer.