Coverage: fix the missing output stream in recursive call to CoverageMappingContext::dump

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214206 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alex Lorenz 2014-07-29 19:58:16 +00:00
parent 6277ad6748
commit 65b59361c5

View File

@ -101,9 +101,9 @@ void CounterMappingContext::dump(const Counter &C,
return;
const auto &E = Expressions[C.getExpressionID()];
OS << '(';
dump(E.LHS);
dump(E.LHS, OS);
OS << (E.Kind == CounterExpression::Subtract ? " - " : " + ");
dump(E.RHS);
dump(E.RHS, OS);
OS << ')';
break;
}