diff options
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/GCOV.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/GCOV.h b/include/llvm/Support/GCOV.h index ef1a4ebd71..d8836e0670 100644 --- a/include/llvm/Support/GCOV.h +++ b/include/llvm/Support/GCOV.h @@ -235,7 +235,7 @@ public: LineInfo[Filename][Line-1] += Count; } void setProgramCount(uint32_t PC) { ProgramCount = PC; } - void print(StringRef gcnoFile, StringRef gcdaFile); + void print(raw_fd_ostream &OS, StringRef gcnoFile, StringRef gcdaFile); private: StringMap<LineCounts> LineInfo; uint32_t ProgramCount; |