aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/Interval.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Analysis/Interval.cpp')
-rw-r--r--lib/Analysis/Interval.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/Interval.cpp b/lib/Analysis/Interval.cpp
index de5d57f85e..a4aa88abdb 100644
--- a/lib/Analysis/Interval.cpp
+++ b/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);