aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-cov/gcov.cpp
AgeCommit message (Collapse)AuthorFilesLines
2015-10-14Rename one of our two llvm::GCOVOptions classes to llvm::GCOV::Options. We usedRichard Smith1-3/+3
to get away with this because llvm/Support/GCOV.h was an implementation detail of the llvm-gcov tool, but it's now being used by FDO. llvm-svn: 250258
2015-03-09Make helper functions static.Benjamin Kramer1-3/+4
Found by -Wmissing-prototypes. NFC. llvm-svn: 231664
2015-01-23llvm-cov: Don't use llvm::outs() in library codeJustin Bogner1-1/+1
Nothing in lib/ should be using llvm::outs() directly. Thread it in from the caller instead. llvm-svn: 226961
2014-12-17Remove unused includes and out of date comment. NFC.Rafael Espindola1-1/+0
llvm-svn: 224413
2014-10-30llvm-cov: Follow LLVM naming conventionsJustin Bogner1-1/+1
This renames a few things that are using an unusual naming convention. llvm-svn: 220929
2014-07-28llvm-cov: move the gcov code into a separate file.Alex Lorenz1-0/+153
The gcov compatible code is moved to its own file and llvm-cov is updated to be a wrapper that always calls the gcov main function. llvm-svn: 214107