mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-04 19:26:30 +00:00
Silencing a -Wsign-compare warning; NFC.
llvm-svn: 224195
This commit is contained in:
parent
4987182bf8
commit
29c803c115
@ -683,7 +683,8 @@ void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
|
||||
// emission domain. This produces nicer output and silences potential
|
||||
// truncation warnings when round tripping through another assembler.
|
||||
uint64_t Shift = 64 - EmissionSize * 8;
|
||||
assert(Shift < std::numeric_limits<unsigned long long>::digits &&
|
||||
assert(Shift < static_cast<unsigned>(
|
||||
std::numeric_limits<unsigned long long>::digits) &&
|
||||
"undefined behavior");
|
||||
ValueToEmit &= ~0ULL >> Shift;
|
||||
EmitIntValue(ValueToEmit, EmissionSize);
|
||||
|
Loading…
x
Reference in New Issue
Block a user