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


Ignore:
Timestamp:
2006-01-22T17:59:13Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2b34a88
Parents:
a96c570
Message:

Added function for 64 bit multiplication but its still buggy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • softfloat/generic/softfloat.c

    ra96c570 rbff16dd  
    105105}
    106106
     107double __muldf3(double a, double b)
     108{
     109        float64 da, db;
     110        da.d = a;
     111        db.d = b;
     112        return  mulFloat64(da, db).d;
     113}
     114
    107115float __divsf3(float a, float b)
    108116{
Note: See TracChangeset for help on using the changeset viewer.