Do not pass a copy of the value map, pass a reference to it.
[oota-llvm.git] / tools / bugpoint / ExtractFunction.cpp
index c03d86ca1fe85f3a8af903710b719e1a2a895a6c..e0f9db6d438bdb3c10f940e652c91cf65eceeb9d 100644 (file)
@@ -199,7 +199,7 @@ static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
 /// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
 /// prune appropriate entries out of M1s list.
 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
-                                ValueMap<const Value*, Value*> VMap) {
+                                ValueMap<const Value*, Value*> &VMap) {
   GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
   if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
       !GV->use_empty()) return;