about summary refs log tree commit diff homepage
path: root/lib/Module
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-25 05:17:51 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-25 05:17:51 +0000
commitf8f6c637b24f11703a9991361df8c4260242dbd9 (patch)
tree717be1833e7890a7221396695562ba75d36defbe /lib/Module
parent6fdbb198e201ae935e19fb824a88f168f07c928a (diff)
downloadklee-f8f6c637b24f11703a9991361df8c4260242dbd9.tar.gz
(llvm up) Update for llvm::Value getName() change.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@77049 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Module')
-rw-r--r--lib/Module/KModule.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp
index 5d88fbda..eae1d2a9 100644
--- a/lib/Module/KModule.cpp
+++ b/lib/Module/KModule.cpp
@@ -26,6 +26,7 @@
 #include "llvm/PassManager.h"
 #include "llvm/ValueSymbolTable.h"
 #include "llvm/Support/CommandLine.h"
+#include "llvm/Support/raw_ostream.h"
 #include "llvm/System/Path.h"
 #include "llvm/Target/TargetData.h"
 #include "llvm/Transforms/Scalar.h"
@@ -221,7 +222,7 @@ void KModule::prepare(const Interpreter::ModuleOptions &opts,
       CallInst::Create(mergeFn, "", exit);
       ReturnInst::Create(result, exit);
 
-      llvm::cerr << "KLEE: adding klee_merge at exit of: " << name << "\n";
+      llvm::errs() << "KLEE: adding klee_merge at exit of: " << name << "\n";
       for (llvm::Function::iterator bbit = f->begin(), bbie = f->end(); 
            bbit != bbie; ++bbit) {
         if (&*bbit != exit) {
@@ -395,12 +396,12 @@ void KModule::prepare(const Interpreter::ModuleOptions &opts,
   }
 
   if (DebugPrintEscapingFunctions && !escapingFunctions.empty()) {
-    llvm::cerr << "KLEE: escaping functions: [";
+    llvm::errs() << "KLEE: escaping functions: [";
     for (std::set<Function*>::iterator it = escapingFunctions.begin(), 
          ie = escapingFunctions.end(); it != ie; ++it) {
-      llvm::cerr << (*it)->getName() << ", ";
+      llvm::errs() << (*it)->getName() << ", ";
     }
-    llvm::cerr << "]\n";
+    llvm::errs() << "]\n";
   }
 }