Silence VC++ warning.
authorJeff Cohen <jeffc@jolt-lang.org>
Fri, 13 Apr 2007 22:52:03 +0000 (22:52 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Fri, 13 Apr 2007 22:52:03 +0000 (22:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35975 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp

index 91b5557695fbdcf5fc4a54e73b864fcda7684cdc..83704a34d1dfa0e617196e45b7676ca17fc65875 100644 (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())