forked from OSchip/llvm-project
Move typedef of loop to top of the file where it is more obvious.
llvm-svn: 45857
This commit is contained in:
parent
b97b83fbf7
commit
b3220147d2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue