aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/Instrumentation')
-rw-r--r--lib/Transforms/Instrumentation/EmitFunctions.cpp12
-rw-r--r--lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp4
2 files changed, 9 insertions, 7 deletions
diff --git a/lib/Transforms/Instrumentation/EmitFunctions.cpp b/lib/Transforms/Instrumentation/EmitFunctions.cpp
index 2d9b9a7c93..3506cb9056 100644
--- a/lib/Transforms/Instrumentation/EmitFunctions.cpp
+++ b/lib/Transforms/Instrumentation/EmitFunctions.cpp
@@ -12,11 +12,13 @@
using std::vector;
-struct EmitFunctionTable : public Pass {
- const char *getPassName() const { return "EmitFunctionTablePass"; }
-
- bool run(Module &M);
-};
+namespace {
+ struct EmitFunctionTable : public Pass {
+ bool run(Module &M);
+ };
+
+ RegisterPass<EmitFunctionTable> X("emitfuncs", "Emit a Function Table");
+}
// Create a new pass to add function table
//
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
index 391bc5bb89..95cd5bea9a 100644
--- a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
+++ b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
@@ -37,8 +37,6 @@
using std::vector;
struct ProfilePaths : public FunctionPass {
- const char *getPassName() const { return "ProfilePaths"; }
-
bool runOnFunction(Function &F);
// Before this pass, make sure that there is only one
@@ -49,6 +47,8 @@ struct ProfilePaths : public FunctionPass {
}
};
+static RegisterPass<ProfilePaths> X("paths", "Profile Paths");
+
// createProfilePathsPass - Create a new pass to add path profiling
//
Pass *createProfilePathsPass() {