[llvm-commits] CVS: llvm/lib/Transforms/Hello/Hello.cpp
Nick Lewycky
nicholas at mxc.ca
Sun May 6 06:38:17 PDT 2007
Changes in directory llvm/lib/Transforms/Hello:
Hello.cpp updated: 1.17 -> 1.18
---
Log message:
Fix typo in comment.
---
Diffs of the changes: (+2 -2)
Hello.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Transforms/Hello/Hello.cpp
diff -u llvm/lib/Transforms/Hello/Hello.cpp:1.17 llvm/lib/Transforms/Hello/Hello.cpp:1.18
--- llvm/lib/Transforms/Hello/Hello.cpp:1.17 Wed May 2 20:11:54 2007
+++ llvm/lib/Transforms/Hello/Hello.cpp Sun May 6 08:37:16 2007
@@ -25,7 +25,7 @@
namespace {
// Hello - The first implementation, without getAnalysisUsage.
struct Hello : public FunctionPass {
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
Hello() : FunctionPass((intptr_t)&ID) {}
virtual bool runOnFunction(Function &F) {
@@ -42,7 +42,7 @@
// Hello2 - The second implementation with getAnalysisUsage implemented.
struct Hello2 : public FunctionPass {
- static char ID; // Pass identifcation, replacement for typeid
+ static char ID; // Pass identification, replacement for typeid
Hello2() : FunctionPass((intptr_t)&ID) {}
virtual bool runOnFunction(Function &F) {
More information about the llvm-commits
mailing list