diff options
author | Owen Anderson <resistor@mac.com> | 2008-08-21 00:14:44 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-08-21 00:14:44 +0000 |
commit | 847b99b2df4534498b514c439324e7c60de5c3b7 (patch) | |
tree | a72c740cc8590cd63825fcf08f71c5e2f625ca55 /lib/Support | |
parent | 091c331b18d2e8d40d35d7b9b0d422f832f2fdc5 (diff) | |
download | external_llvm-847b99b2df4534498b514c439324e7c60de5c3b7.zip external_llvm-847b99b2df4534498b514c439324e7c60de5c3b7.tar.gz external_llvm-847b99b2df4534498b514c439324e7c60de5c3b7.tar.bz2 |
Use raw_ostream throughout the AsmPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/raw_ostream.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index 144b90f..39686cb 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp @@ -19,15 +19,15 @@ using namespace llvm; #if defined(_MSC_VER) #include <io.h> -#ifndef STDIN_FILENO
-# define STDIN_FILENO 0
-#endif
-#ifndef STDOUT_FILENO
-# define STDOUT_FILENO 1
-#endif
-#ifndef STDERR_FILENO
-# define STDERR_FILENO 2
-#endif
+#ifndef STDIN_FILENO +# define STDIN_FILENO 0 +#endif +#ifndef STDOUT_FILENO +# define STDOUT_FILENO 1 +#endif +#ifndef STDERR_FILENO +# define STDERR_FILENO 2 +#endif #endif // An out of line virtual method to provide a home for the class vtable. @@ -82,14 +82,14 @@ void raw_stderr_ostream::handle() {} /// outs() - This returns a reference to a raw_ostream for standard output. /// Use it like: outs() << "foo" << "bar"; -raw_ostream &outs() { +raw_ostream &llvm::outs() { static raw_stdout_ostream S; return S; } /// errs() - This returns a reference to a raw_ostream for standard error. /// Use it like: errs() << "foo" << "bar"; -raw_ostream &errs() { +raw_ostream &llvm::errs() { static raw_stderr_ostream S; return S; } |