[llvm-commits] CVS: llvm/lib/CodeGen/PHIElimination.cpp TwoAddressInstructionPass.cpp UnreachableBlockElim.cpp

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



Changes in directory llvm/lib/CodeGen:

PHIElimination.cpp updated: 1.60 -> 1.61
TwoAddressInstructionPass.cpp updated: 1.50 -> 1.51
UnreachableBlockElim.cpp updated: 1.12 -> 1.13
---
Log message:

Fix typo in comment.


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

 PHIElimination.cpp            |    2 +-
 TwoAddressInstructionPass.cpp |    2 +-
 UnreachableBlockElim.cpp      |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/CodeGen/PHIElimination.cpp
diff -u llvm/lib/CodeGen/PHIElimination.cpp:1.60 llvm/lib/CodeGen/PHIElimination.cpp:1.61
--- llvm/lib/CodeGen/PHIElimination.cpp:1.60	Wed May  2 20:11:53 2007
+++ llvm/lib/CodeGen/PHIElimination.cpp	Sun May  6 08:37:16 2007
@@ -33,7 +33,7 @@
 
 namespace {
   struct VISIBILITY_HIDDEN PNE : public MachineFunctionPass {
-    static char ID; // Pass identifcation, replacement for typeid
+    static char ID; // Pass identification, replacement for typeid
     PNE() : MachineFunctionPass((intptr_t)&ID) {}
 
     bool runOnMachineFunction(MachineFunction &Fn) {


Index: llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
diff -u llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.50 llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.51
--- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.50	Wed May  2 20:11:53 2007
+++ llvm/lib/CodeGen/TwoAddressInstructionPass.cpp	Sun May  6 08:37:16 2007
@@ -50,7 +50,7 @@
 namespace {
   struct VISIBILITY_HIDDEN TwoAddressInstructionPass
    : public MachineFunctionPass {
-    static char ID; // Pass identifcation, replacement for typeid
+    static char ID; // Pass identification, replacement for typeid
     TwoAddressInstructionPass() : MachineFunctionPass((intptr_t)&ID) {}
 
     virtual void getAnalysisUsage(AnalysisUsage &AU) const;


Index: llvm/lib/CodeGen/UnreachableBlockElim.cpp
diff -u llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.12 llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.13
--- llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.12	Wed May  2 20:11:53 2007
+++ llvm/lib/CodeGen/UnreachableBlockElim.cpp	Sun May  6 08:37:16 2007
@@ -35,7 +35,7 @@
   class VISIBILITY_HIDDEN UnreachableBlockElim : public FunctionPass {
     virtual bool runOnFunction(Function &F);
   public:
-    static char ID; // Pass identifcation, replacement for typeid
+    static char ID; // Pass identification, replacement for typeid
     UnreachableBlockElim() : FunctionPass((intptr_t)&ID) {}
   };
   char UnreachableBlockElim::ID = 0;






More information about the llvm-commits mailing list