Keep callers of a weak function calling it, instead of the non-weak equivalent.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73235 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/IPO/MergeFunctions.cpp b/lib/Transforms/IPO/MergeFunctions.cpp
index a1d91c2..2b7fb5d 100644
--- a/lib/Transforms/IPO/MergeFunctions.cpp
+++ b/lib/Transforms/IPO/MergeFunctions.cpp
@@ -548,6 +548,7 @@
                                      F->getParent());
       H->copyAttributesFrom(F);
       H->takeName(F);
+      F->replaceAllUsesWith(H);
 
       ThunkGToF(F, G);
       ThunkGToF(F, H);