summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/Streams.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Support/Streams.cpp')
-rw-r--r--llvm/lib/Support/Streams.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Support/Streams.cpp b/llvm/lib/Support/Streams.cpp
index 9ca7590e37c..02aec1fff8a 100644
--- a/llvm/lib/Support/Streams.cpp
+++ b/llvm/lib/Support/Streams.cpp
@@ -16,6 +16,7 @@
#include <iostream>
using namespace llvm;
-llvm_ostream llvm::llvm_null;
-llvm_ostream llvm::llvm_cout(std::cout);
-llvm_ostream llvm::llvm_cerr(std::cerr);
+OStream llvm::NullStream;
+OStream llvm::cout(std::cout);
+OStream llvm::cerr(std::cerr);
+IStream llvm::cin(std::cin);
OpenPOWER on IntegriCloud