forked from OSchip/llvm-project
Fix left shifts by too large exponents in MCParser
(which happened only on error recovery path). This bug was reported by UBSan. llvm-svn: 216915
This commit is contained in:
parent
b9de900788
commit
1b0713ce09
|
@ -2601,13 +2601,14 @@ bool AsmParser::parseDirectiveFill() {
|
|||
if (!isUInt<32>(FillExpr) && FillSize > 4)
|
||||
Warning(ExprLoc, "'.fill' directive pattern has been truncated to 32-bits");
|
||||
|
||||
int64_t NonZeroFillSize = FillSize > 4 ? 4 : FillSize;
|
||||
FillExpr &= ~0ULL >> (64 - NonZeroFillSize * 8);
|
||||
|
||||
for (uint64_t i = 0, e = NumValues; i != e; ++i) {
|
||||
getStreamer().EmitIntValue(FillExpr, NonZeroFillSize);
|
||||
if (NonZeroFillSize < FillSize)
|
||||
getStreamer().EmitIntValue(0, FillSize - NonZeroFillSize);
|
||||
if (NumValues > 0) {
|
||||
int64_t NonZeroFillSize = FillSize > 4 ? 4 : FillSize;
|
||||
FillExpr &= ~0ULL >> (64 - NonZeroFillSize * 8);
|
||||
for (uint64_t i = 0, e = NumValues; i != e; ++i) {
|
||||
getStreamer().EmitIntValue(FillExpr, NonZeroFillSize);
|
||||
if (NonZeroFillSize < FillSize)
|
||||
getStreamer().EmitIntValue(0, FillSize - NonZeroFillSize);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue