Changeset e6a40ac in mainline for softfloat/generic/softfloat.c


Ignore:
Timestamp:
2006-02-10T02:40:49Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e979fea
Parents:
1a030b8
Message:

64bit float division added.
Some bugs fixed in 64bit multiplication and adding.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • softfloat/generic/softfloat.c

    r1a030b8 re6a40ac  
    121121}
    122122
     123double __divdf3(double a, double b)
     124{
     125        float64 da, db;
     126        da.d = a;
     127        db.d = b;
     128        return  divFloat64(da, db).d;
     129}
     130
    123131float __negsf2(float a)
    124132{
Note: See TracChangeset for help on using the changeset viewer.