From: Chris Lattner Date: Sun, 29 Sep 2002 22:59:29 +0000 (+0000) Subject: Minor tweak X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c8f25d91bd1cf4e7cf0127a169c04d5128cdd9e3;p=oota-llvm.git Minor tweak git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3985 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 1c3d5ee5658..1f8e34ca7e6 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp @@ -147,8 +147,9 @@ BasicBlock *Loop::getLoopPreheader() const { BasicBlock *Header = getHeader(); for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header); PI != PE; ++PI) - if (!contains(*PI)) { // If the block is not in the loop... - if (Out) return 0; // Multiple predecessors outside the loop + if (!contains(*PI)) { // If the block is not in the loop... + if (Out && Out != *PI) + return 0; // Multiple predecessors outside the loop Out = *PI; }