1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Silencing a -Wsign-compare warning; NFC.

llvm-svn: 224195
This commit is contained in:
Aaron Ballman 2014-12-13 16:55:02 +00:00
parent 4987182bf8
commit 29c803c115

View File

@ -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);