| 1728 | } |
| 1729 | |
| 1730 | static bool |
| 1731 | isShiftExponentTooLarge(char *szLocation, struct CTypeDescriptor *pType, unsigned long ulNumber, size_t zWidth) |
| 1732 | { |
| 1733 | |
| 1734 | ASSERT(szLocation); |
| 1735 | ASSERT(pType); |
| 1736 | ASSERT(pType->mTypeKind == KIND_INTEGER); |
| 1737 | |
| 1738 | return llluGetNumber(szLocation, pType, ulNumber) >= zWidth; |
| 1739 | } |
| 1740 | |
| 1741 | #endif // HAVE_UBSAN_SUPPORT |
no test coverage detected