Changeset 1d83419 in mainline for softfloat/include/conversion.h
- Timestamp:
- 2006-02-24T17:27:19Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba5870d
- Parents:
- a82695c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
softfloat/include/conversion.h
ra82695c r1d83419 36 36 __u32 float32_to_uint32(float32 a); 37 37 __s32 float32_to_int32(float32 a); 38 39 __u64 float32_to_uint64(float32 a); 40 __s64 float32_to_int64(float32 a); 41 38 42 __u64 float64_to_uint64(float64 a); 39 43 __s64 float64_to_int64(float64 a); 40 __u64 float32_to_uint64(float32 a); 41 __s64 float32_to_int64(float32 a); 44 42 45 __u32 float64_to_uint32(float64 a); 43 46 __s32 float64_to_int32(float64 a); 44 47 48 float32 uint32_to_float32(__u32 i); 49 float32 int32_to_float32(__s32 i); 45 50 51 float32 uint64_to_float32(__u64 i); 52 float32 int64_to_float32(__s64 i); 46 53 #endif 47 54
Note:
See TracChangeset
for help on using the changeset viewer.