mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 08:29:43 +00:00
Changing a cast from unsigned to uint64_t, should be NFC in practice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224249 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a8a374135b
commit
bfba3894f3
@ -683,7 +683,7 @@ 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 < static_cast<unsigned>(
|
||||
assert(Shift < static_cast<uint64_t>(
|
||||
std::numeric_limits<unsigned long long>::digits) &&
|
||||
"undefined behavior");
|
||||
ValueToEmit &= ~0ULL >> Shift;
|
||||
|
Loading…
Reference in New Issue
Block a user