diff options
Diffstat (limited to 'lib/Target/CBackend/Writer.cpp')
-rw-r--r-- | lib/Target/CBackend/Writer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/CBackend/Writer.cpp b/lib/Target/CBackend/Writer.cpp index 96fc53948b..46c8bf1bd7 100644 --- a/lib/Target/CBackend/Writer.cpp +++ b/lib/Target/CBackend/Writer.cpp @@ -296,7 +296,7 @@ bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) { if (!X.second) { // Found a conflict, replace this global with the previous one. GlobalValue *OldGV = X.first->second; - GV->replaceAllUsesWith(ConstantExpr::getCast(OldGV, GV->getType())); + GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType())); GV->eraseFromParent(); Changed = true; } @@ -312,7 +312,7 @@ bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) { if (!X.second) { // Found a conflict, replace this global with the previous one. GlobalValue *OldGV = X.first->second; - GV->replaceAllUsesWith(ConstantExpr::getCast(OldGV, GV->getType())); + GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType())); GV->eraseFromParent(); Changed = true; } |