[llvm-commits] CVS: llvm/lib/Transforms/Hello/Hello.cpp
Devang Patel
dpatel at apple.com
Tue May 1 14:18:00 PDT 2007
Changes in directory llvm/lib/Transforms/Hello:
Hello.cpp updated: 1.14 -> 1.15
---
Log message:
Do not use typeinfo to identify pass in pass manager.
---
Diffs of the changes: (+9 -0)
Hello.cpp | 9 +++++++++
1 files changed, 9 insertions(+)
Index: llvm/lib/Transforms/Hello/Hello.cpp
diff -u llvm/lib/Transforms/Hello/Hello.cpp:1.14 llvm/lib/Transforms/Hello/Hello.cpp:1.15
--- llvm/lib/Transforms/Hello/Hello.cpp:1.14 Fri Apr 13 13:58:18 2007
+++ llvm/lib/Transforms/Hello/Hello.cpp Tue May 1 16:15:46 2007
@@ -25,6 +25,9 @@
namespace {
// Hello - The first implementation, without getAnalysisUsage.
struct Hello : public FunctionPass {
+ static const int ID; // Pass identifcation, replacement for typeid
+ Hello() : FunctionPass((intptr_t)&ID) {}
+
virtual bool runOnFunction(Function &F) {
HelloCounter++;
std::string fname = F.getName();
@@ -33,10 +36,15 @@
return false;
}
};
+
+ const int Hello::ID = 0;
RegisterPass<Hello> X("hello", "Hello World Pass");
// Hello2 - The second implementation with getAnalysisUsage implemented.
struct Hello2 : public FunctionPass {
+ static const int ID; // Pass identifcation, replacement for typeid
+ Hello2() : FunctionPass((intptr_t)&ID) {}
+
virtual bool runOnFunction(Function &F) {
HelloCounter++;
std::string fname = F.getName();
@@ -50,6 +58,7 @@
AU.setPreservesAll();
};
};
+ const int Hello2::ID = 0;
RegisterPass<Hello2> Y("hello2",
"Hello World Pass (with getAnalysisUsage implemented)");
}
More information about the llvm-commits
mailing list