aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-15 20:31:46 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-15 20:31:46 +0000
commit48f5114de937c031d43c91691806b04f55d35e2b (patch)
treed2ef357d41d00a2c3b72d344552e17bab3358355 /include/llvm/Support
parent6dee039bc647d7ac37a135272648af92dec812e1 (diff)
downloadexternal_llvm-48f5114de937c031d43c91691806b04f55d35e2b.zip
external_llvm-48f5114de937c031d43c91691806b04f55d35e2b.tar.gz
external_llvm-48f5114de937c031d43c91691806b04f55d35e2b.tar.bz2
Drop the raw_ostream required buffer size to 1.
- As best I can tell, we have eliminated all the code which used to require a larger buffer size. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/raw_ostream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h
index dbad40c..7827dd8 100644
--- a/include/llvm/Support/raw_ostream.h
+++ b/include/llvm/Support/raw_ostream.h
@@ -41,7 +41,7 @@ private:
/// 1. Unbuffered (BufferMode == Unbuffered)
/// 1. Uninitialized (BufferMode != Unbuffered && OutBufStart == 0).
/// 2. Buffered (BufferMode != Unbuffered && OutBufStart != 0 &&
- /// OutBufEnd - OutBufStart >= 64).
+ /// OutBufEnd - OutBufStart >= 1).
///
/// If buffered, then the raw_ostream owns the buffer if (BufferMode ==
/// InternalBuffer); otherwise the buffer has been set via SetBuffer and is