Constant pool is dead
authorChris Lattner <sabre@nondot.org>
Fri, 7 Sep 2001 16:42:51 +0000 (16:42 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 7 Sep 2001 16:42:51 +0000 (16:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@455 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/InlineSimple.cpp

index bd4fd26a9dd975d3c332f7918c79413f1dccd4f7..27ef66e42e3ac33a7c014fed1ed3775aa2b35289 100644 (file)
@@ -40,8 +40,8 @@ static inline void RemapInstruction(Instruction *I,
   for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
     const Value *Op = I->getOperand(op);
     Value *V = ValueMap[Op];
-    if (!V && Op->isMethod()) 
-      continue;  // Methods don't get relocated
+    if (!V && (Op->isMethod() || Op->isConstant()))
+      continue;  // Methods and constants don't get relocated
 
     if (!V) {
       cerr << "Val = " << endl << Op << "Addr = " << (void*)Op << endl;
@@ -176,20 +176,6 @@ bool opt::InlineMethod(BasicBlock::iterator CIIt) {
   }
 
 
-  // Copy over the constant pool...
-  //
-  const ConstantPool &CP = CalledMeth->getConstantPool();
-  ConstantPool    &NewCP = CurrentMeth->getConstantPool();
-  for (ConstantPool::plane_const_iterator PI = CP.begin(); PI != CP.end(); ++PI){
-    ConstantPool::PlaneType &Plane = **PI;
-    for (ConstantPool::PlaneType::const_iterator I = Plane.begin(); 
-        I != Plane.end(); ++I) {
-      ConstPoolVal *NewVal = (*I)->clone(); // Copy existing constant
-      NewCP.insert(NewVal);         // Insert the new copy into local const pool
-      ValueMap[*I] = NewVal;        // Keep track of constant value mappings
-    }
-  }
-
   // Loop over all of the instructions in the method, fixing up operand 
   // references as we go.  This uses ValueMap to do all the hard work.
   //