summaryrefslogtreecommitdiff
path: root/lib/Analysis/IntervalPartition.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-13 03:32:08 +0000
committerChris Lattner <sabre@nondot.org>2003-10-13 03:32:08 +0000
commitcf3056db0fee1db7921214b1f25cea04e959e105 (patch)
tree0d3986942f0be9fba36271f39cf3df5b85c02a67 /lib/Analysis/IntervalPartition.cpp
parentc00d23a727f143bdd24f29d529ebc2cc3230bef8 (diff)
downloadllvm-cf3056db0fee1db7921214b1f25cea04e959e105.tar.gz
llvm-cf3056db0fee1db7921214b1f25cea04e959e105.tar.bz2
llvm-cf3056db0fee1db7921214b1f25cea04e959e105.tar.xz
Regularize header file comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IntervalPartition.cpp')
-rw-r--r--lib/Analysis/IntervalPartition.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Analysis/IntervalPartition.cpp b/lib/Analysis/IntervalPartition.cpp
index 9b9010f167..eb4975ffda 100644
--- a/lib/Analysis/IntervalPartition.cpp
+++ b/lib/Analysis/IntervalPartition.cpp
@@ -1,4 +1,4 @@
-//===- IntervalPartition.cpp - Interval Partition module code ----*- C++ -*--=//
+//===- IntervalPartition.cpp - Interval Partition module code -------------===//
//
// This file contains the definition of the IntervalPartition class, which
// calculates and represent the interval partition of a function.
@@ -8,8 +8,6 @@
#include "llvm/Analysis/IntervalIterator.h"
#include "Support/STLExtras.h"
-using std::make_pair;
-
static RegisterAnalysis<IntervalPartition>
X("intervals", "Interval Partition Construction", true);
@@ -39,7 +37,7 @@ void IntervalPartition::addIntervalToPartition(Interval *I) {
// Add mappings for all of the basic blocks in I to the IntervalPartition
for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
It != End; ++It)
- IntervalMap.insert(make_pair(*It, I));
+ IntervalMap.insert(std::make_pair(*It, I));
}
// updatePredecessors - Interval generation only sets the successor fields of