[llvm-commits] CVS: llvm/lib/Analysis/Expressions.cpp Interval.cpp IntervalPartition.cpp LoopInfo.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 12 22:35:02 PDT 2003
Changes in directory llvm/lib/Analysis:
Expressions.cpp updated: 1.35 -> 1.36
Interval.cpp updated: 1.12 -> 1.13
IntervalPartition.cpp updated: 1.21 -> 1.22
LoopInfo.cpp updated: 1.41 -> 1.42
---
Log message:
Regularize header file comments
---
Diffs of the changes: (+5 -7)
Index: llvm/lib/Analysis/Expressions.cpp
diff -u llvm/lib/Analysis/Expressions.cpp:1.35 llvm/lib/Analysis/Expressions.cpp:1.36
--- llvm/lib/Analysis/Expressions.cpp:1.35 Wed Jul 23 10:16:40 2003
+++ llvm/lib/Analysis/Expressions.cpp Sun Oct 12 22:32:03 2003
@@ -1,4 +1,4 @@
-//===- Expressions.cpp - Expression Analysis Utilities ----------------------=//
+//===- Expressions.cpp - Expression Analysis Utilities --------------------===//
//
// This file defines a package of expression analysis utilties:
//
Index: llvm/lib/Analysis/Interval.cpp
diff -u llvm/lib/Analysis/Interval.cpp:1.12 llvm/lib/Analysis/Interval.cpp:1.13
--- llvm/lib/Analysis/Interval.cpp:1.12 Wed Jul 31 14:32:01 2002
+++ llvm/lib/Analysis/Interval.cpp Sun Oct 12 22:32:03 2003
@@ -1,4 +1,4 @@
-//===- Interval.cpp - Interval class code ------------------------*- C++ -*--=//
+//===- Interval.cpp - Interval class code ---------------------------------===//
//
// This file contains the definition of the Interval class, which represents a
// partition of a control flow graph of some kind.
Index: llvm/lib/Analysis/IntervalPartition.cpp
diff -u llvm/lib/Analysis/IntervalPartition.cpp:1.21 llvm/lib/Analysis/IntervalPartition.cpp:1.22
--- llvm/lib/Analysis/IntervalPartition.cpp:1.21 Tue Oct 29 17:01:15 2002
+++ llvm/lib/Analysis/IntervalPartition.cpp Sun Oct 12 22:32:03 2003
@@ -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 @@
// 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
Index: llvm/lib/Analysis/LoopInfo.cpp
diff -u llvm/lib/Analysis/LoopInfo.cpp:1.41 llvm/lib/Analysis/LoopInfo.cpp:1.42
--- llvm/lib/Analysis/LoopInfo.cpp:1.41 Sun Oct 12 17:14:27 2003
+++ llvm/lib/Analysis/LoopInfo.cpp Sun Oct 12 22:32:03 2003
@@ -1,4 +1,4 @@
-//===- LoopInfo.cpp - Natural Loop Calculator -------------------------------=//
+//===- LoopInfo.cpp - Natural Loop Calculator -----------------------------===//
//
// This file defines the LoopInfo class that is used to identify natural loops
// and determine the loop depth of various nodes of the CFG. Note that the
More information about the llvm-commits
mailing list