raw_ostream: Fix a comment in llvm::errs

https://reviews.llvm.org/D81156 tied errs() to outs().
030897523d43e3296f69d25a71a140d9e5793c6a removed the tie, but did not
update the comment.
This commit is contained in:
Fangrui Song 2024-05-30 14:16:28 -07:00
parent 031f08c0a5
commit f795853d1f

View File

@ -906,7 +906,7 @@ raw_fd_ostream &llvm::outs() {
}
raw_fd_ostream &llvm::errs() {
// Set standard error to be unbuffered and tied to outs() by default.
// Set standard error to be unbuffered.
#ifdef __MVS__
std::error_code EC = enableAutoConversion(STDERR_FILENO);
assert(!EC);