diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
commit | 44d2c3514a5ac8008fd16991334470d67dde492e (patch) | |
tree | ded932e2e7b779f86f4f89908be4777ae68be3e6 /llvm/lib/Analysis/IntervalPartition.cpp | |
parent | c3ad6e0b1f407e756e2921892170e492674dab00 (diff) | |
download | bcm5719-llvm-44d2c3514a5ac8008fd16991334470d67dde492e.tar.gz bcm5719-llvm-44d2c3514a5ac8008fd16991334470d67dde492e.zip |
Regularize header file comments
llvm-svn: 9071
Diffstat (limited to 'llvm/lib/Analysis/IntervalPartition.cpp')
-rw-r--r-- | llvm/lib/Analysis/IntervalPartition.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/IntervalPartition.cpp b/llvm/lib/Analysis/IntervalPartition.cpp index 9b9010f167e..eb4975ffdab 100644 --- a/llvm/lib/Analysis/IntervalPartition.cpp +++ b/llvm/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 |