| 1693 | } |
| 1694 | |
| 1695 | static bool |
| 1696 | isShiftExponentTooLarge(char *szLocation, struct CTypeDescriptor *pType, unsigned long ulNumber, size_t zWidth) |
| 1697 | { |
| 1698 | |
| 1699 | ASSERT(szLocation); |
| 1700 | ASSERT(pType); |
| 1701 | ASSERT(pType->mTypeKind == KIND_INTEGER); |
| 1702 | |
| 1703 | return llluGetNumber(szLocation, pType, ulNumber) >= zWidth; |
| 1704 | } |
no test coverage detected