Move typedef of loop to top of the file where it is more obvious.

llvm-svn: 45857
This commit is contained in:
Chris Lattner 2008-01-11 06:29:42 +00:00
parent b97b83fbf7
commit b3220147d2
1 changed files with 3 additions and 2 deletions

View File

@ -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