[llvm] f795853 - raw_ostream: Fix a comment in llvm::errs
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Thu May 30 14:16:33 PDT 2024
Author: Fangrui Song
Date: 2024-05-30T14:16:28-07:00
New Revision: f795853d1f77bff69c3805f75e54fa7a32cc23d9
URL: https://github.com/llvm/llvm-project/commit/f795853d1f77bff69c3805f75e54fa7a32cc23d9
DIFF: https://github.com/llvm/llvm-project/commit/f795853d1f77bff69c3805f75e54fa7a32cc23d9.diff
LOG: 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.
Added:
Modified:
llvm/lib/Support/raw_ostream.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp
index e8d12357bfded..0acb54f76c0bf 100644
--- a/llvm/lib/Support/raw_ostream.cpp
+++ b/llvm/lib/Support/raw_ostream.cpp
@@ -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);
More information about the llvm-commits
mailing list