mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Regularize header file comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9071 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user