diff options
author | Yuchen Wu <yuchenericwu@hotmail.com> | 2013-12-05 20:45:36 +0000 |
---|---|---|
committer | Yuchen Wu <yuchenericwu@hotmail.com> | 2013-12-05 20:45:36 +0000 |
commit | 9af3938b51b9e9ceecbafa34b196b5e754f3aaa3 (patch) | |
tree | 3729464abd49b1383cccec8b8b8ebc66ef4d5c89 /llvm/lib/IR/GCOV.cpp | |
parent | 5899e8916bc49c8938e510ce092cb9d1e9a5228b (diff) | |
download | bcm5719-llvm-9af3938b51b9e9ceecbafa34b196b5e754f3aaa3.tar.gz bcm5719-llvm-9af3938b51b9e9ceecbafa34b196b5e754f3aaa3.zip |
llvm-cov: Changed extension from .llcov to .gcov.
llvm-svn: 196530
Diffstat (limited to 'llvm/lib/IR/GCOV.cpp')
-rw-r--r-- | llvm/lib/IR/GCOV.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/GCOV.cpp b/llvm/lib/IR/GCOV.cpp index 14eb71f0300..d377858498c 100644 --- a/llvm/lib/IR/GCOV.cpp +++ b/llvm/lib/IR/GCOV.cpp @@ -367,7 +367,7 @@ void FileInfo::print(StringRef GCNOFile, StringRef GCDAFile) const { } StringRef AllLines = Buff->getBuffer(); - std::string CovFilename = Filename.str() + ".llcov"; + std::string CovFilename = Filename.str() + ".gcov"; std::string ErrorInfo; raw_fd_ostream OS(CovFilename.c_str(), ErrorInfo); if (!ErrorInfo.empty()) |