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
This commit is contained in:
Chris Lattner 2008-01-11 06:29:42 +00:00
parent 131bd2ecf7
commit fadcd4e60b

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