Changeset 3af72dc in mainline for softfloat/generic/comparison.c


Ignore:
Timestamp:
2006-01-08T16:26:00Z (20 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
feef1cd
Parents:
75a23abf
Message:

Function for multiplying added to softfloat lib.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • softfloat/generic/comparison.c

    r75a23abf r3af72dc  
    4444        return ((f.parts.exp==0xFF)&&(f.parts.mantisa==0x0));
    4545};
     46
     47inline int isFloat32Zero(float32 f)
     48{
     49        return (((f.binary) & 0x7FFFFFFF) == 0);
     50}
    4651
    4752/**
Note: See TracChangeset for help on using the changeset viewer.