From: Bill Wendling Date: Fri, 17 Nov 2006 09:54:47 +0000 (+0000) Subject: Moved definition of llvm_ostream wrappers to the Streams.cpp file. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ab41c3e6b7520a84560113d84ea83c2d86b1eff7;p=oota-llvm.git Moved definition of llvm_ostream wrappers to the Streams.cpp file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31819 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Debug.cpp b/lib/Support/Debug.cpp index cbf12c7c0d7..9cea94c5471 100644 --- a/lib/Support/Debug.cpp +++ b/lib/Support/Debug.cpp @@ -23,9 +23,8 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Support/Debug.h" #include "llvm/Support/CommandLine.h" -#include +#include "llvm/Support/Debug.h" using namespace llvm; bool llvm::DebugFlag; // DebugFlag - Exported boolean set by the -debug option @@ -71,7 +70,7 @@ bool llvm::isCurrentDebugType(const char *DebugType) { // llvm_ostream llvm::getErrorOutputStream(const char *DebugType) { if (DebugFlag && isCurrentDebugType(DebugType)) - return llvm_ostream(std::cerr); + return llvm_cerr; else - return llvm_ostream(); + return llvm_null; }