Don't cast away qualifiers with C-style casts.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111933 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index 4891631..f2187c0 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -338,9 +338,9 @@
 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 @@
   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;