mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00
Fixed MSVC out of range shift warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277333 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a77b56f254
commit
25fd1498fa
@ -309,7 +309,7 @@ bool MipsSEDAGToDAGISel::selectAddrFrameIndexOffset(
|
||||
Base = Addr.getOperand(0);
|
||||
// If base is a FI, additional offset calculation is done in
|
||||
// eliminateFrameIndex, otherwise we need to check the alignment
|
||||
if (OffsetToAlignment(CN->getZExtValue(), 1 << ShiftAmount) != 0)
|
||||
if (OffsetToAlignment(CN->getZExtValue(), 1ull << ShiftAmount) != 0)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user