diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-28 16:21:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-28 16:21:30 +0000 |
commit | 78dd56fe624c015195ba8493b8ea627d7671a565 (patch) | |
tree | a9178fdfa065ee161e54d7d091e83d52521bead2 /llvm/lib/Analysis/Interval.cpp | |
parent | 002958cdbbd8b931a43c42a78d4a4a44531700c0 (diff) | |
download | bcm5719-llvm-78dd56fe624c015195ba8493b8ea627d7671a565.tar.gz bcm5719-llvm-78dd56fe624c015195ba8493b8ea627d7671a565.zip |
Eliminate the cfg namespace, moving LoopInfo, Dominators, Interval* classes
to the global namespace
llvm-svn: 2370
Diffstat (limited to 'llvm/lib/Analysis/Interval.cpp')
-rw-r--r-- | llvm/lib/Analysis/Interval.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/Interval.cpp b/llvm/lib/Analysis/Interval.cpp index de5d57f85e7..a4aa88abdbc 100644 --- a/llvm/lib/Analysis/Interval.cpp +++ b/llvm/lib/Analysis/Interval.cpp @@ -1,7 +1,7 @@ //===- Interval.cpp - Interval class code ------------------------*- C++ -*--=// // -// This file contains the definition of the cfg::Interval class, which -// represents a partition of a control flow graph of some kind. +// This file contains the definition of the Interval class, which represents a +// partition of a control flow graph of some kind. // //===----------------------------------------------------------------------===// @@ -15,7 +15,7 @@ // isLoop - Find out if there is a back edge in this interval... // -bool cfg::Interval::isLoop() const { +bool Interval::isLoop() const { // There is a loop in this interval iff one of the predecessors of the header // node lives in the interval. for (::pred_iterator I = ::pred_begin(HeaderNode), E = ::pred_end(HeaderNode); |