[llvm] r204705 - Simplify loop that worked around bugs in old GCC/Xcode.

Erik Verbruggen erikjv at me.com
Tue Mar 25 02:06:18 PDT 2014


Author: erikjv
Date: Tue Mar 25 04:06:18 2014
New Revision: 204705

URL: http://llvm.org/viewvc/llvm-project?rev=204705&view=rev
Log:
Simplify loop that worked around bugs in old GCC/Xcode.

GCC 4.0.1 and Xcode 2 are no longer supported for building llvm/clang.

Modified:
    llvm/trunk/lib/Analysis/CFG.cpp

Modified: llvm/trunk/lib/Analysis/CFG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/CFG.cpp?rev=204705&r1=204704&r2=204705&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/CFG.cpp (original)
+++ llvm/trunk/lib/Analysis/CFG.cpp Tue Mar 25 04:06:18 2014
@@ -101,15 +101,9 @@ bool llvm::isCriticalEdge(const Terminat
 
   // If AllowIdenticalEdges is true, then we allow this edge to be considered
   // non-critical iff all preds come from TI's block.
-  while (I != E) {
-    const BasicBlock *P = *I;
-    if (P != FirstPred)
+  for (; I != E; ++I)
+    if (*I != FirstPred)
       return true;
-    // Note: leave this as is until no one ever compiles with either gcc 4.0.1
-    // or Xcode 2. This seems to work around the pred_iterator assert in PR 2207
-    E = pred_end(P);
-    ++I;
-  }
   return false;
 }
 





More information about the llvm-commits mailing list