diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-10-30 20:57:49 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-10-30 20:57:49 +0000 |
commit | d249a3b3b21e2f07bd5b774069cfa51196c4b127 (patch) | |
tree | 26969974ede9dfe1d1f739749c733e9684d83f34 /llvm/tools/llvm-cov/gcov.cpp | |
parent | f6c50557646079a0f7bc8607a63f6f506524d3e4 (diff) | |
download | bcm5719-llvm-d249a3b3b21e2f07bd5b774069cfa51196c4b127.tar.gz bcm5719-llvm-d249a3b3b21e2f07bd5b774069cfa51196c4b127.zip |
llvm-cov: Follow LLVM naming conventions
This renames a few things that are using an unusual naming convention.
llvm-svn: 220929
Diffstat (limited to 'llvm/tools/llvm-cov/gcov.cpp')
-rw-r--r-- | llvm/tools/llvm-cov/gcov.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/gcov.cpp b/llvm/tools/llvm-cov/gcov.cpp index bd493d25c97..4c9195a44b1 100644 --- a/llvm/tools/llvm-cov/gcov.cpp +++ b/llvm/tools/llvm-cov/gcov.cpp @@ -84,7 +84,7 @@ void reportCoverage(StringRef SourceFile, StringRef ObjectDir, FI.print(SourceFile, GCNO, GCDA); } -int gcov_main(int argc, const char **argv) { +int gcovMain(int argc, const char *argv[]) { // Print a stack trace if we signal out. sys::PrintStackTraceOnErrorSignal(); PrettyStackTraceProgram X(argc, argv); |