Skip to content

Commit 96c0bd1

Browse files
committed
Dump Fingerprint Status to the Provided Stream
Not doing so causes the IDE and terminals to interleave the output of the dump.
1 parent 59c041d commit 96c0bd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/AST/FineGrainedDependencies.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ void DepGraphNode::dump() const {
339339
void DepGraphNode::dump(raw_ostream &os) const {
340340
key.dump(os);
341341
if (fingerprint.hasValue())
342-
llvm::errs() << "fingerprint: " << fingerprint.getValue() << "";
342+
os << "fingerprint: " << fingerprint.getValue() << "";
343343
else
344-
llvm::errs() << "no fingerprint";
344+
os << "no fingerprint";
345345
}
346346

347347
void SourceFileDepGraphNode::dump() const {

0 commit comments

Comments
 (0)