mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 08:41:44 +00:00
Fix compiler warnings from r257477
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257483 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
53ff84bf11
commit
f0ce2c50e1
@ -315,7 +315,7 @@ void NodeAllocator::startNewBlock() {
|
|||||||
// Check if the block index is still within the allowed range, i.e. less
|
// Check if the block index is still within the allowed range, i.e. less
|
||||||
// than 2^N, where N is the number of bits in NodeId for the block index.
|
// than 2^N, where N is the number of bits in NodeId for the block index.
|
||||||
// BitsPerIndex is the number of bits per node index.
|
// BitsPerIndex is the number of bits per node index.
|
||||||
assert((Blocks.size() < (1 << (8*sizeof(NodeId)-BitsPerIndex))) &&
|
assert((Blocks.size() < (1U << (8*sizeof(NodeId)-BitsPerIndex))) &&
|
||||||
"Out of bits for block index");
|
"Out of bits for block index");
|
||||||
ActiveEnd = P;
|
ActiveEnd = P;
|
||||||
}
|
}
|
||||||
@ -789,7 +789,7 @@ unsigned DataFlowGraph::DefStack::nextUp(unsigned P) const {
|
|||||||
// The input position P does not have to point to a non-delimiter.
|
// The input position P does not have to point to a non-delimiter.
|
||||||
unsigned SS = Stack.size();
|
unsigned SS = Stack.size();
|
||||||
bool IsDelim;
|
bool IsDelim;
|
||||||
assert(P >= 0 && P < SS);
|
assert(P < SS);
|
||||||
do {
|
do {
|
||||||
P++;
|
P++;
|
||||||
IsDelim = isDelimiter(Stack[P-1]);
|
IsDelim = isDelimiter(Stack[P-1]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user