diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-11 06:29:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-11 06:29:42 +0000 |
commit | fadcd4e60be40bcab198dcb0eef6e4a51b4c0627 (patch) | |
tree | af353ac63e1817f75c7764f95e8d9aa97c4c143d | |
parent | 131bd2ecf721749666111ec2dd1d32a20ae049b2 (diff) |
Move typedef of loop to top of the file where it is more obvious.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45857 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/LoopInfo.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index d78ac0877b..d80ce3ac26 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -57,6 +57,9 @@ class LoopInfo; class PHINode; class Instruction; template<class N> class LoopInfoBase; +template<class N> class LoopBase; + +typedef LoopBase<BasicBlock> Loop; //===----------------------------------------------------------------------===// /// LoopBase class - Instances of this class are used to represent loops that @@ -552,8 +555,6 @@ private: } }; -typedef LoopBase<BasicBlock> Loop; - //===----------------------------------------------------------------------===// /// LoopInfo - This class builds and contains all of the top level loop |