From 44d2c3514a5ac8008fd16991334470d67dde492e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 Oct 2003 03:32:08 +0000 Subject: Regularize header file comments llvm-svn: 9071 --- llvm/lib/Analysis/IntervalPartition.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'llvm/lib/Analysis/IntervalPartition.cpp') 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 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 -- cgit v1.2.3