Changeset 3af72dc in mainline for softfloat/generic/comparison.c
- Timestamp:
- 2006-01-08T16:26:00Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- feef1cd
- Parents:
- 75a23abf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
softfloat/generic/comparison.c
r75a23abf r3af72dc 44 44 return ((f.parts.exp==0xFF)&&(f.parts.mantisa==0x0)); 45 45 }; 46 47 inline int isFloat32Zero(float32 f) 48 { 49 return (((f.binary) & 0x7FFFFFFF) == 0); 50 } 46 51 47 52 /**
Note:
See TracChangeset
for help on using the changeset viewer.