diff options
Diffstat (limited to 'llvm/lib/Support/raw_ostream.cpp')
| -rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 221859d..4dd891d6 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -19,6 +19,7 @@  #include "llvm/Config/config.h"  #include "llvm/Support/Compiler.h"  #include "llvm/Support/ErrorHandling.h" +#include "llvm/ADT/StringExtras.h"  #include <ostream>  #include <sys/stat.h>  #include <sys/types.h> @@ -173,6 +174,13 @@ raw_ostream &raw_ostream::operator<<(const void *P) {    return write_hex((uintptr_t) P);  } +raw_ostream &raw_ostream::operator<<(double N) { +  this->operator<<(ftostr(N)); +  return *this; +} + + +  void raw_ostream::flush_nonempty() {    assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");    size_t Length = OutBufCur - OutBufStart;  | 
