diff options
Diffstat (limited to 'lib/Support/raw_ostream.cpp')
-rw-r--r-- | lib/Support/raw_ostream.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index 397d2967c2..3cec18b442 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp @@ -375,6 +375,12 @@ raw_ostream &llvm::errs() { return S; } +/// nulls() - This returns a reference to a raw_ostream which discards output. +raw_ostream &llvm::nulls() { + static raw_null_ostream S; + return S; +} + //===----------------------------------------------------------------------===// // raw_os_ostream //===----------------------------------------------------------------------===// @@ -422,3 +428,14 @@ uint64_t raw_svector_ostream::current_pos() { return OS.size(); } uint64_t raw_svector_ostream::tell() { return OS.size() + GetNumBytesInBuffer(); } + +//===----------------------------------------------------------------------===// +// raw_null_ostream +//===----------------------------------------------------------------------===// + +void raw_null_ostream::write_impl(const char *Ptr, size_t Size) { +} + +uint64_t raw_null_ostream::current_pos() { + return 0; +} |