mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
cache result of operator*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107981 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
03f09a3e32
commit
e80ba4f884
@ -106,11 +106,12 @@ bool llvm::isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum,
|
|||||||
// If AllowIdenticalEdges is true, then we allow this edge to be considered
|
// If AllowIdenticalEdges is true, then we allow this edge to be considered
|
||||||
// non-critical iff all preds come from TI's block.
|
// non-critical iff all preds come from TI's block.
|
||||||
while (I != E) {
|
while (I != E) {
|
||||||
if (*I != FirstPred)
|
const BasicBlock *P = *I;
|
||||||
|
if (P != FirstPred)
|
||||||
return true;
|
return true;
|
||||||
// Note: leave this as is until no one ever compiles with either gcc 4.0.1
|
// 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
|
// or Xcode 2. This seems to work around the pred_iterator assert in PR 2207
|
||||||
E = pred_end(*I);
|
E = pred_end(P);
|
||||||
++I;
|
++I;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user