Checkin stub for Misha to implement
authorChris Lattner <sabre@nondot.org>
Wed, 25 Sep 2002 19:10:06 +0000 (19:10 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 25 Sep 2002 19:10:06 +0000 (19:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3919 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LoopInfo.h

index 73f9719c2055b651025ff182898bb141990cf70d..65e11a5636c2a54b039f7d6e81871b143fd5fc50 100644 (file)
@@ -40,6 +40,10 @@ public:
   inline const std::vector<Loop*> &getSubLoops() const { return SubLoops; }
   inline const std::vector<BasicBlock*> &getBlocks() const { return Blocks; }
 
+  // isLoopExit - True if terminator in the block can branch to another block
+  // that is outside of the current loop.
+  bool isLoopExit(BasicBlock *BB) const;
+
   void print(std::ostream &O) const;
 private:
   friend class LoopInfo;
@@ -96,8 +100,6 @@ public:
   }
   // isLoopEnd - True if block jumps to loop entry
   bool isLoopEnd(BasicBlock *BB) const;
-  // isLoopExit - True if block is the loop exit
-  bool isLoopExit(BasicBlock *BB) const;
 #endif
 
   // runOnFunction - Pass framework implementation