Fix multitop to go to stderr (#3070)

This commit is contained in:
Wilson Snyder 2021-07-20 08:00:14 -04:00
parent 1166728a8d
commit da8930a57a
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ void V3LinkLevel::modSortByLevel() {
"--top-module to select top."
<< V3Error::warnContextNone());
for (AstNode* alsop : tops) {
std::cout << secp->warnMore() << "... Top module " << alsop->prettyNameQ() << endl
std::cerr << secp->warnMore() << "... Top module " << alsop->prettyNameQ() << endl
<< alsop->warnContextSecondary();
}
}