Silence VC++ warning.

llvm-svn: 35975
This commit is contained in:
Jeff Cohen 2007-04-13 22:52:03 +00:00
parent 9f9fe70b11
commit b4c610fb89
1 changed files with 1 additions and 1 deletions

View File

@ -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())