[llvm-commits] CVS: llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp LCSSA.cpp LoopSimplify.cpp LowerInvoke.cpp LowerSelect.cpp LowerSwitch.cpp Mem2Reg.cpp
Nick Lewycky
nicholas at mxc.ca
Sun May 6 06:38:19 PDT 2007
Changes in directory llvm/lib/Transforms/Utils:
BreakCriticalEdges.cpp updated: 1.47 -> 1.48
LCSSA.cpp updated: 1.41 -> 1.42
LoopSimplify.cpp updated: 1.95 -> 1.96
LowerInvoke.cpp updated: 1.62 -> 1.63
LowerSelect.cpp updated: 1.15 -> 1.16
LowerSwitch.cpp updated: 1.41 -> 1.42
Mem2Reg.cpp updated: 1.29 -> 1.30
---
Log message:
Fix typo in comment.
---
Diffs of the changes: (+7 -7)
BreakCriticalEdges.cpp | 2 +-
LCSSA.cpp | 2 +-
LoopSimplify.cpp | 2 +-
LowerInvoke.cpp | 2 +-
LowerSelect.cpp | 2 +-
LowerSwitch.cpp | 2 +-
Mem2Reg.cpp | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
Index: llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
diff -u llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp:1.47 llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp:1.48
--- llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp:1.47 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp Sun May 6 08:37:16 2007
@@ -34,7 +34,7 @@
namespace {
struct VISIBILITY_HIDDEN BreakCriticalEdges : public FunctionPass {
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
BreakCriticalEdges() : FunctionPass((intptr_t)&ID) {}
virtual bool runOnFunction(Function &F);
Index: llvm/lib/Transforms/Utils/LCSSA.cpp
diff -u llvm/lib/Transforms/Utils/LCSSA.cpp:1.41 llvm/lib/Transforms/Utils/LCSSA.cpp:1.42
--- llvm/lib/Transforms/Utils/LCSSA.cpp:1.41 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/LCSSA.cpp Sun May 6 08:37:16 2007
@@ -47,7 +47,7 @@
namespace {
struct VISIBILITY_HIDDEN LCSSA : public FunctionPass {
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
LCSSA() : FunctionPass((intptr_t)&ID) {}
// Cached analysis information for the current function.
Index: llvm/lib/Transforms/Utils/LoopSimplify.cpp
diff -u llvm/lib/Transforms/Utils/LoopSimplify.cpp:1.95 llvm/lib/Transforms/Utils/LoopSimplify.cpp:1.96
--- llvm/lib/Transforms/Utils/LoopSimplify.cpp:1.95 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/LoopSimplify.cpp Sun May 6 08:37:16 2007
@@ -54,7 +54,7 @@
namespace {
struct VISIBILITY_HIDDEN LoopSimplify : public FunctionPass {
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
LoopSimplify() : FunctionPass((intptr_t)&ID) {}
// AA - If we have an alias analysis object to update, this is it, otherwise
Index: llvm/lib/Transforms/Utils/LowerInvoke.cpp
diff -u llvm/lib/Transforms/Utils/LowerInvoke.cpp:1.62 llvm/lib/Transforms/Utils/LowerInvoke.cpp:1.63
--- llvm/lib/Transforms/Utils/LowerInvoke.cpp:1.62 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/LowerInvoke.cpp Sun May 6 08:37:16 2007
@@ -75,7 +75,7 @@
const TargetLowering *TLI;
public:
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
LowerInvoke(const TargetLowering *tli = NULL) : FunctionPass((intptr_t)&ID),
TLI(tli) { }
bool doInitialization(Module &M);
Index: llvm/lib/Transforms/Utils/LowerSelect.cpp
diff -u llvm/lib/Transforms/Utils/LowerSelect.cpp:1.15 llvm/lib/Transforms/Utils/LowerSelect.cpp:1.16
--- llvm/lib/Transforms/Utils/LowerSelect.cpp:1.15 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/LowerSelect.cpp Sun May 6 08:37:16 2007
@@ -33,7 +33,7 @@
class VISIBILITY_HIDDEN LowerSelect : public FunctionPass {
bool OnlyFP; // Only lower FP select instructions?
public:
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
LowerSelect(bool onlyfp = false) : FunctionPass((intptr_t)&ID),
OnlyFP(onlyfp) {}
Index: llvm/lib/Transforms/Utils/LowerSwitch.cpp
diff -u llvm/lib/Transforms/Utils/LowerSwitch.cpp:1.41 llvm/lib/Transforms/Utils/LowerSwitch.cpp:1.42
--- llvm/lib/Transforms/Utils/LowerSwitch.cpp:1.41 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/LowerSwitch.cpp Sun May 6 08:37:16 2007
@@ -30,7 +30,7 @@
/// modifies the CFG!
class VISIBILITY_HIDDEN LowerSwitch : public FunctionPass {
public:
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
LowerSwitch() : FunctionPass((intptr_t) &ID) {}
virtual bool runOnFunction(Function &F);
Index: llvm/lib/Transforms/Utils/Mem2Reg.cpp
diff -u llvm/lib/Transforms/Utils/Mem2Reg.cpp:1.29 llvm/lib/Transforms/Utils/Mem2Reg.cpp:1.30
--- llvm/lib/Transforms/Utils/Mem2Reg.cpp:1.29 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Utils/Mem2Reg.cpp Sun May 6 08:37:16 2007
@@ -27,7 +27,7 @@
namespace {
struct VISIBILITY_HIDDEN PromotePass : public FunctionPass {
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
PromotePass() : FunctionPass((intptr_t)&ID) {}
// runOnFunction - To run this pass, first we calculate the alloca
More information about the llvm-commits
mailing list