diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 08:43:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 08:43:55 +0000 |
commit | 471ba48cb99a9d9bb8964f63363a3470369c2ecc (patch) | |
tree | c2df904af193eb7651904e850c607ea08dfbf3e4 /llvm/lib/Debugger/SourceLanguage-Unknown.cpp | |
parent | 0ad0c21248024f2343810fe3ab3b2d646ffb0ef4 (diff) | |
download | bcm5719-llvm-471ba48cb99a9d9bb8964f63363a3470369c2ecc.tar.gz bcm5719-llvm-471ba48cb99a9d9bb8964f63363a3470369c2ecc.zip |
remove some uses of llvm/Support/Streams.h
llvm-svn: 79842
Diffstat (limited to 'llvm/lib/Debugger/SourceLanguage-Unknown.cpp')
-rw-r--r-- | llvm/lib/Debugger/SourceLanguage-Unknown.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Debugger/SourceLanguage-Unknown.cpp b/llvm/lib/Debugger/SourceLanguage-Unknown.cpp index b806fc779ef..d408866dea4 100644 --- a/llvm/lib/Debugger/SourceLanguage-Unknown.cpp +++ b/llvm/lib/Debugger/SourceLanguage-Unknown.cpp @@ -15,9 +15,8 @@ #include "llvm/Debugger/SourceLanguage.h" #include "llvm/Debugger/ProgramInfo.h" -#include "llvm/Support/Streams.h" +#include "llvm/Support/raw_ostream.h" #include <cassert> -#include <ostream> using namespace llvm; //===----------------------------------------------------------------------===// @@ -132,7 +131,7 @@ SourceFunctionInfo *SLU::lookupFunction(const std::string &FunctionName, SourceFunctionInfo *Found = IP.first->second; ++IP.first; if (IP.first != IP.second) - cout << "Whoa, found multiple functions with the same name. I should" + outs() << "Whoa, found multiple functions with the same name. I should" << " ask the user which one to use: FIXME!\n"; return Found; } |