mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-10 14:12:11 +00:00
Silence VC++ warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35975 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c6b9efabee
commit
614408dc48
@ -2372,7 +2372,7 @@ void CWriter::lowerIntrinsics(Function &F) {
|
||||
|
||||
// Examine all the instructions in this function to find the intrinsics that
|
||||
// need to be lowered.
|
||||
for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
|
||||
for (Function::iterator BB = F.begin(), EE = F.end(); BB != EE; ++BB)
|
||||
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
|
||||
if (CallInst *CI = dyn_cast<CallInst>(I++))
|
||||
if (Function *F = CI->getCalledFunction())
|
||||
|
Loading…
Reference in New Issue
Block a user