from before I removed thet non-const use of the function.
The unused variable that held the const_cast was already kindly removed
by Michael.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225143
91177308-0d34-0410-b5e6-
96231b3b80d8
if (!AssumeVH)
continue;
CallInst *I = cast<CallInst>(AssumeVH);
- assert((I->getParent()->getParent() ==
- const_cast<Function*>(Q.CxtI->getParent()->getParent())) &&
+ assert(I->getParent()->getParent() == Q.CxtI->getParent()->getParent() &&
"Got assumption for the wrong function!");
if (Q.ExclInvs.count(I))
continue;