diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-04-16 01:20:23 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-04-16 01:20:23 +0000 |
commit | 966edd068f841278f1112118e8e17de4d1652e74 (patch) | |
tree | 3f9f63dd8fe01bd7ef1536c57ec2ac2897ce0a27 /llvm/lib/Transforms/Instrumentation/Instrumentation.cpp | |
parent | 70d14f5df3f6b358a8da7d562a83e80101acaf6b (diff) | |
download | bcm5719-llvm-966edd068f841278f1112118e8e17de4d1652e74.tar.gz bcm5719-llvm-966edd068f841278f1112118e8e17de4d1652e74.zip |
Rename LineProfiling to GCOVProfiling to more accurately represent what it
does. Also mostly implement it. Still a work-in-progress, but generates legal
output on crafted test cases.
llvm-svn: 129630
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/Instrumentation.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/Instrumentation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp b/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp index b299bb71a4a..71adc1ec6de 100644 --- a/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp +++ b/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp @@ -23,7 +23,7 @@ void llvm::initializeInstrumentation(PassRegistry &Registry) { initializeEdgeProfilerPass(Registry); initializeOptimalEdgeProfilerPass(Registry); initializePathProfilerPass(Registry); - initializeLineProfilerPass(Registry); + initializeGCOVProfilerPass(Registry); } /// LLVMInitializeInstrumentation - C binding for |