diff options
Diffstat (limited to 'llvm/lib/Support/raw_ostream.cpp')
| -rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 403300f1bc4..42e6fda97ba 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -120,7 +120,6 @@ raw_ostream &raw_ostream::operator<<(const void *P) {  void raw_ostream::flush_nonempty() {    assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty."); -  AboutToFlush();    write_impl(OutBufStart, OutBufCur - OutBufStart);    OutBufCur = OutBufStart;      } | 

