diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-24 18:09:44 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-24 18:09:44 +0000 |
commit | c47a474802172608f0ddb68948e766155b5e40d4 (patch) | |
tree | f28ffc7dd06b80d7c6b04d0e85646ceee0273f94 /lib/Linker | |
parent | cd59dc5e81eb080cd9b61f5a7e7d9f3eec206d8c (diff) | |
download | external_llvm-c47a474802172608f0ddb68948e766155b5e40d4.zip external_llvm-c47a474802172608f0ddb68948e766155b5e40d4.tar.gz external_llvm-c47a474802172608f0ddb68948e766155b5e40d4.tar.bz2 |
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
Diffstat (limited to 'lib/Linker')
-rw-r--r-- | lib/Linker/LinkModules.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 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; |