Changeset aa59fa0 in mainline for softfloat/include/common.h
- Timestamp:
- 2006-03-16T00:32:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 585819d
- Parents:
- 69cdeec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
softfloat/include/common.h
r69cdeec raa59fa0 32 32 #include<sftypes.h> 33 33 34 float64 finishFloat64( __s32 cexp, __u64cfrac, char sign);34 float64 finishFloat64(int32_t cexp, uint64_t cfrac, char sign); 35 35 36 int countZeroes64( __u64i);37 int countZeroes32( __u32i);38 int countZeroes8( __u8i);36 int countZeroes64(uint64_t i); 37 int countZeroes32(uint32_t i); 38 int countZeroes8(uint8_t i); 39 39 40 void roundFloat32( __s32 *exp, __u32*fraction);41 void roundFloat64( __s32 *exp, __u64*fraction);40 void roundFloat32(int32_t *exp, uint32_t *fraction); 41 void roundFloat64(int32_t *exp, uint64_t *fraction); 42 42 43 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.