From 471ba48cb99a9d9bb8964f63363a3470369c2ecc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 Aug 2009 08:43:55 +0000 Subject: remove some uses of llvm/Support/Streams.h llvm-svn: 79842 --- llvm/lib/Support/PluginLoader.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'llvm/lib/Support/PluginLoader.cpp') 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 #include using namespace llvm; @@ -28,8 +27,8 @@ void PluginLoader::operator=(const std::string &Filename) { sys::SmartScopedLock 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); } -- cgit v1.2.3