summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/LoopExtractor.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-23 07:19:13 +0000
committerChris Lattner <sabre@nondot.org>2009-08-23 07:19:13 +0000
commit103289e9383ad1eb66caf28c9b166aebce963a35 (patch)
tree610f140c3f32fdfab3f0ec1d59b6a28875577f9d /lib/Transforms/IPO/LoopExtractor.cpp
parenta36b81d64f90f7cc7c946080d317322c3f4e3a0f (diff)
downloadllvm-103289e9383ad1eb66caf28c9b166aebce963a35.tar.gz
llvm-103289e9383ad1eb66caf28c9b166aebce963a35.tar.bz2
llvm-103289e9383ad1eb66caf28c9b166aebce963a35.tar.xz
convert LoopInfo.h and GraphWriter.h to use raw_ostream
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/LoopExtractor.cpp')
-rw-r--r--lib/Transforms/IPO/LoopExtractor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/LoopExtractor.cpp b/lib/Transforms/IPO/LoopExtractor.cpp
index 0c654438d5..4b0988441d 100644
--- a/lib/Transforms/IPO/LoopExtractor.cpp
+++ b/lib/Transforms/IPO/LoopExtractor.cpp
@@ -193,8 +193,8 @@ void BlockExtractorPass::LoadFile(const char *Filename) {
// Load the BlockFile...
std::ifstream In(Filename);
if (!In.good()) {
- cerr << "WARNING: BlockExtractor couldn't load file '" << Filename
- << "'!\n";
+ errs() << "WARNING: BlockExtractor couldn't load file '" << Filename
+ << "'!\n";
return;
}
while (In) {