[llvm-commits] CVS: llvm/include/llvm/Analysis/Dominators.h FindUsedTypes.h IntervalPartition.h LoopInfo.h PostDominators.h ScalarEvolution.h

Nick Lewycky nicholas at mxc.ca
Sun May 6 06:38:18 PDT 2007



Changes in directory llvm/include/llvm/Analysis:

Dominators.h updated: 1.80 -> 1.81
FindUsedTypes.h updated: 1.32 -> 1.33
IntervalPartition.h updated: 1.26 -> 1.27
LoopInfo.h updated: 1.66 -> 1.67
PostDominators.h updated: 1.20 -> 1.21
ScalarEvolution.h updated: 1.20 -> 1.21
---
Log message:

Fix typo in comment.


---
Diffs of the changes:  (+6 -6)

 Dominators.h        |    2 +-
 FindUsedTypes.h     |    2 +-
 IntervalPartition.h |    2 +-
 LoopInfo.h          |    2 +-
 PostDominators.h    |    2 +-
 ScalarEvolution.h   |    2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)


Index: llvm/include/llvm/Analysis/Dominators.h
diff -u llvm/include/llvm/Analysis/Dominators.h:1.80 llvm/include/llvm/Analysis/Dominators.h:1.81
--- llvm/include/llvm/Analysis/Dominators.h:1.80	Thu May  3 15:55:18 2007
+++ llvm/include/llvm/Analysis/Dominators.h	Sun May  6 08:37:15 2007
@@ -399,7 +399,7 @@
 
 class ETForest : public ETForestBase {
 public:
-  static char ID; // Pass identifcation, replacement for typeid
+  static char ID; // Pass identification, replacement for typeid
 
   ETForest() : ETForestBase((intptr_t)&ID, false) {}
 


Index: llvm/include/llvm/Analysis/FindUsedTypes.h
diff -u llvm/include/llvm/Analysis/FindUsedTypes.h:1.32 llvm/include/llvm/Analysis/FindUsedTypes.h:1.33
--- llvm/include/llvm/Analysis/FindUsedTypes.h:1.32	Wed May  2 20:11:53 2007
+++ llvm/include/llvm/Analysis/FindUsedTypes.h	Sun May  6 08:37:15 2007
@@ -24,7 +24,7 @@
 class FindUsedTypes : public ModulePass {
   std::set<const Type *> UsedTypes;
 public:
-  static char ID; // Pass identifcation, replacement for typeid
+  static char ID; // Pass identification, replacement for typeid
   FindUsedTypes() : ModulePass((intptr_t)&ID) {}
 
   /// getTypes - After the pass has been run, return the set containing all of


Index: llvm/include/llvm/Analysis/IntervalPartition.h
diff -u llvm/include/llvm/Analysis/IntervalPartition.h:1.26 llvm/include/llvm/Analysis/IntervalPartition.h:1.27
--- llvm/include/llvm/Analysis/IntervalPartition.h:1.26	Wed May  2 20:11:53 2007
+++ llvm/include/llvm/Analysis/IntervalPartition.h	Sun May  6 08:37:15 2007
@@ -45,7 +45,7 @@
   std::vector<Interval*> Intervals;
 
 public:
-  static char ID; // Pass identifcation, replacement for typeid
+  static char ID; // Pass identification, replacement for typeid
 
   IntervalPartition() : FunctionPass((intptr_t)&ID), RootInterval(0) {}
 


Index: llvm/include/llvm/Analysis/LoopInfo.h
diff -u llvm/include/llvm/Analysis/LoopInfo.h:1.66 llvm/include/llvm/Analysis/LoopInfo.h:1.67
--- llvm/include/llvm/Analysis/LoopInfo.h:1.66	Wed May  2 20:11:53 2007
+++ llvm/include/llvm/Analysis/LoopInfo.h	Sun May  6 08:37:15 2007
@@ -241,7 +241,7 @@
   std::vector<Loop*> TopLevelLoops;
   friend class Loop;
 public:
-  static char ID; // Pass identifcation, replacement for typeid
+  static char ID; // Pass identification, replacement for typeid
 
   LoopInfo() : FunctionPass((intptr_t)&ID) {}
   ~LoopInfo() { releaseMemory(); }


Index: llvm/include/llvm/Analysis/PostDominators.h
diff -u llvm/include/llvm/Analysis/PostDominators.h:1.20 llvm/include/llvm/Analysis/PostDominators.h:1.21
--- llvm/include/llvm/Analysis/PostDominators.h:1.20	Wed May  2 20:11:53 2007
+++ llvm/include/llvm/Analysis/PostDominators.h	Sun May  6 08:37:15 2007
@@ -22,7 +22,7 @@
 /// compute the a post-dominator tree.
 ///
 struct PostDominatorTree : public DominatorTreeBase {
-  static char ID; // Pass identifcation, replacement for typeid
+  static char ID; // Pass identification, replacement for typeid
 
   PostDominatorTree() : 
     DominatorTreeBase((intptr_t)&ID, true) {}


Index: llvm/include/llvm/Analysis/ScalarEvolution.h
diff -u llvm/include/llvm/Analysis/ScalarEvolution.h:1.20 llvm/include/llvm/Analysis/ScalarEvolution.h:1.21
--- llvm/include/llvm/Analysis/ScalarEvolution.h:1.20	Thu May  3 13:45:06 2007
+++ llvm/include/llvm/Analysis/ScalarEvolution.h	Sun May  6 08:37:15 2007
@@ -197,7 +197,7 @@
   class ScalarEvolution : public FunctionPass {
     void *Impl;    // ScalarEvolution uses the pimpl pattern
   public:
-    static char ID; // Pass identifcation, replacement for typeid
+    static char ID; // Pass identification, replacement for typeid
     ScalarEvolution() : FunctionPass((intptr_t)&ID), Impl(0) {}
 
     /// getSCEV - Return a SCEV expression handle for the full generality of the






More information about the llvm-commits mailing list