Changeset a82695c in mainline for softfloat/include/conversion.h


Ignore:
Timestamp:
2006-02-22T11:29:49Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1d83419
Parents:
2cb202e
Message:

Completed conversions from float/double to integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • softfloat/include/conversion.h

    r2cb202e ra82695c  
    3434float32 convertFloat64ToFloat32(float64 a);
    3535
     36__u32 float32_to_uint32(float32 a);
     37__s32 float32_to_int32(float32 a);
     38__u64 float64_to_uint64(float64 a);
     39__s64 float64_to_int64(float64 a);
     40__u64 float32_to_uint64(float32 a);
     41__s64 float32_to_int64(float32 a);
     42__u32 float64_to_uint32(float64 a);
     43__s32 float64_to_int32(float64 a);
     44
     45
    3646#endif
    3747
Note: See TracChangeset for help on using the changeset viewer.