mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 14:17:59 +00:00
Fix unused variable warning for non-asserts builds. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d138a7bb3f
commit
7362319120
@ -485,12 +485,12 @@ static void computeKnownBitsFromAssume(Value *V, APInt &KnownZero,
|
||||
|
||||
unsigned BitWidth = KnownZero.getBitWidth();
|
||||
|
||||
Function *F = const_cast<Function*>(Q.CxtI->getParent()->getParent());
|
||||
for (auto &AssumeVH : Q.AC->assumptions()) {
|
||||
if (!AssumeVH)
|
||||
continue;
|
||||
CallInst *I = cast<CallInst>(AssumeVH);
|
||||
assert(I->getParent()->getParent() == F &&
|
||||
assert((I->getParent()->getParent() ==
|
||||
const_cast<Function*>(Q.CxtI->getParent()->getParent())) &&
|
||||
"Got assumption for the wrong function!");
|
||||
if (Q.ExclInvs.count(I))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user