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/Support/PluginLoader.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/Support/PluginLoader.cpp')
-rw-r--r-- | llvm/lib/Support/PluginLoader.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Support/PluginLoader.cpp b/llvm/lib/Support/PluginLoader.cpp index ea191ad739f..36caecffeed 100644 --- a/llvm/lib/Support/PluginLoader.cpp +++ b/llvm/lib/Support/PluginLoader.cpp @@ -14,10 +14,9 @@ #define DONT_GET_PLUGIN_LOADER_OPTION #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/PluginLoader.h" -#include "llvm/Support/Streams.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/System/DynamicLibrary.h" #include "llvm/System/Mutex.h" -#include <ostream> #include <vector> using namespace llvm; @@ -28,8 +27,8 @@ void PluginLoader::operator=(const std::string &Filename) { sys::SmartScopedLock<true> Lock(*PluginsLock); std::string Error; if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &Error)) { - cerr << "Error opening '" << Filename << "': " << Error - << "\n -load request ignored.\n"; + errs() << "Error opening '" << Filename << "': " << Error + << "\n -load request ignored.\n"; } else { Plugins->push_back(Filename); } |