Don't cast away qualifiers with C-style casts.
authorDan Gohman <gohman@apple.com>
Tue, 24 Aug 2010 18:09:44 +0000 (18:09 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 24 Aug 2010 18:09:44 +0000 (18:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111933 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Linker/LinkModules.cpp

index 4891631bc9c12dcc790c11f4fa9a4875ef9b6b36..f2187c0988234b07c8c372338823be1469e03deb 100644 (file)
@@ -338,9 +338,9 @@ static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
 static void PrintMap(const std::map<const Value*, Value*> &M) {
   for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end();
        I != E; ++I) {
-    dbgs() << " Fr: " << (void*)I->first << " ";
+    dbgs() << " Fr: " << (const void*)I->first << " ";
     I->first->dump();
-    dbgs() << " To: " << (void*)I->second << " ";
+    dbgs() << " To: " << (const void*)I->second << " ";
     I->second->dump();
     dbgs() << "\n";
   }
@@ -419,7 +419,7 @@ static Value *RemapOperand(const Value *In,
   dbgs() << "LinkModules ValueMap: \n";
   PrintMap(ValueMap);
 
-  dbgs() << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
+  dbgs() << "Couldn't remap value: " << (const void*)In << " " << *In << "\n";
   llvm_unreachable("Couldn't remap value!");
 #endif
   return 0;