diff options
author | Chris Lattner <sabre@nondot.org> | 2001-12-03 22:26:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-12-03 22:26:30 +0000 |
commit | e9bb2df410f7a22decad9a883f7139d5857c1520 (patch) | |
tree | f6ca07fb5f5de1df8a2572142a707f56bf25c6e6 /lib/Linker | |
parent | 9ef18310beaabe7abfa712a3c761036ea2d17caa (diff) | |
download | external_llvm-e9bb2df410f7a22decad9a883f7139d5857c1520.zip external_llvm-e9bb2df410f7a22decad9a883f7139d5857c1520.tar.gz external_llvm-e9bb2df410f7a22decad9a883f7139d5857c1520.tar.bz2 |
Rename ConstPoolVal -> Constant
Rename ConstPool* -> Constant*
Rename ConstPoolVals.h -> ConstantVals.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r-- | lib/Linker/LinkModules.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index 8be0793..8a02946 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -16,7 +16,7 @@ #include "llvm/SymbolTable.h" #include "llvm/DerivedTypes.h" #include "llvm/iOther.h" -#include "llvm/ConstPoolVals.h" +#include "llvm/ConstantVals.h" // Error - Simple wrapper function to conditionally assign to E and return true. // This just makes error return conditions a little bit simpler... @@ -90,31 +90,31 @@ static Value *RemapOperand(const Value *In, map<const Value*, Value*> &LocalMap, } // Check to see if it's a constant that we are interesting in transforming... - if (ConstPoolVal *CPV = dyn_cast<ConstPoolVal>(In)) { + if (Constant *CPV = dyn_cast<Constant>(In)) { if (!isa<DerivedType>(CPV->getType())) return CPV; // Simple constants stay identical... - ConstPoolVal *Result = 0; + Constant *Result = 0; - if (ConstPoolArray *CPA = dyn_cast<ConstPoolArray>(CPV)) { + if (ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) { const vector<Use> &Ops = CPA->getValues(); - vector<ConstPoolVal*> Operands(Ops.size()); + vector<Constant*> Operands(Ops.size()); for (unsigned i = 0; i < Ops.size(); ++i) Operands[i] = - cast<ConstPoolVal>(RemapOperand(Ops[i], LocalMap, GlobalMap)); - Result = ConstPoolArray::get(cast<ArrayType>(CPA->getType()), Operands); - } else if (ConstPoolStruct *CPS = dyn_cast<ConstPoolStruct>(CPV)) { + cast<Constant>(RemapOperand(Ops[i], LocalMap, GlobalMap)); + Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands); + } else if (ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) { const vector<Use> &Ops = CPS->getValues(); - vector<ConstPoolVal*> Operands(Ops.size()); + vector<Constant*> Operands(Ops.size()); for (unsigned i = 0; i < Ops.size(); ++i) Operands[i] = - cast<ConstPoolVal>(RemapOperand(Ops[i], LocalMap, GlobalMap)); - Result = ConstPoolStruct::get(cast<StructType>(CPS->getType()), Operands); - } else if (isa<ConstPoolPointerNull>(CPV)) { + cast<Constant>(RemapOperand(Ops[i], LocalMap, GlobalMap)); + Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands); + } else if (isa<ConstantPointerNull>(CPV)) { Result = CPV; - } else if (ConstPoolPointerRef *CPR = dyn_cast<ConstPoolPointerRef>(CPV)) { + } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CPV)) { Value *V = RemapOperand(CPR->getValue(), LocalMap, GlobalMap); - Result = ConstPoolPointerRef::get(cast<GlobalValue>(V)); + Result = ConstantPointerRef::get(cast<GlobalValue>(V)); } else { assert(0 && "Unknown type of derived type constant value!"); } @@ -207,8 +207,8 @@ static bool LinkGlobalInits(Module *Dest, const Module *Src, if (SGV->hasInitializer()) { // Only process initialized GV's // Figure out what the initializer looks like in the dest module... - ConstPoolVal *DInit = - cast<ConstPoolVal>(RemapOperand(SGV->getInitializer(), ValueMap)); + Constant *DInit = + cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap)); GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]); if (DGV->hasInitializer() && SGV->hasExternalLinkage() && |