]> granicus.if.org Git - clang/commitdiff
InstrProf: Use the stream when dumping counters
authorJustin Bogner <mail@justinbogner.com>
Fri, 23 Jan 2015 23:46:13 +0000 (23:46 +0000)
committerJustin Bogner <mail@justinbogner.com>
Fri, 23 Jan 2015 23:46:13 +0000 (23:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@226968 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CoverageMappingGen.cpp

index 6f159d47375e84382243d20b49c183c67910fbce..f65b16c0a9fcd7028658c4e0d191dbc61074b923 100644 (file)
@@ -1028,7 +1028,7 @@ static void dump(llvm::raw_ostream &OS, const CoverageMappingRecord &Function) {
     OS << "File " << R.FileID << ", " << R.LineStart << ":"
            << R.ColumnStart << " -> " << R.LineEnd << ":" << R.ColumnEnd
            << " = ";
-    Ctx.dump(R.Count);
+    Ctx.dump(R.Count, OS);
     OS << " (HasCodeBefore = " << R.HasCodeBefore;
     if (R.Kind == CounterMappingRegion::ExpansionRegion)
       OS << ", Expanded file = " << R.ExpandedFileID;