summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Instrumentation.h
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-04-16 01:20:23 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-04-16 01:20:23 +0000
commitb1928704201034c785a26296a49f69355eb56a05 (patch)
tree6cb5f9d9c717c85a5e9ccb6ada1a9c2a103e192c /include/llvm/Transforms/Instrumentation.h
parente9db5e29e3af91eec572bfeb8dcec908213298b0 (diff)
downloadllvm-b1928704201034c785a26296a49f69355eb56a05.tar.gz
llvm-b1928704201034c785a26296a49f69355eb56a05.tar.bz2
llvm-b1928704201034c785a26296a49f69355eb56a05.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Instrumentation.h')
-rw-r--r--include/llvm/Transforms/Instrumentation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h
index d47216dec7..3ef2f5a14d 100644
--- a/include/llvm/Transforms/Instrumentation.h
+++ b/include/llvm/Transforms/Instrumentation.h
@@ -27,8 +27,8 @@ ModulePass *createOptimalEdgeProfilerPass();
// Insert path profiling instrumentation
ModulePass *createPathProfilerPass();
-// Insert line profiling instrumentation
-ModulePass *createLineProfilerPass();
+// Insert GCOV profiling instrumentation
+ModulePass *createGCOVProfilerPass();
} // End llvm namespace