1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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

llvm-svn: 214206
This commit is contained in:
Alex Lorenz 2014-07-29 19:58:16 +00:00
parent 2fe879698c
commit 7522b90640

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;
}