diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-06-06 21:06:32 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-06-06 21:06:32 +0000 |
commit | 76aca6f38f28a8796d1d1ab60080668d3c7ba4b8 (patch) | |
tree | 00007ad2319c0e16124600523275829826e5ca68 /lib/VMCore | |
parent | 929b39f0a03bb6ae7c7b4ba0fac3e3aa4216b822 (diff) | |
download | external_llvm-76aca6f38f28a8796d1d1ab60080668d3c7ba4b8.zip external_llvm-76aca6f38f28a8796d1d1ab60080668d3c7ba4b8.tar.gz external_llvm-76aca6f38f28a8796d1d1ab60080668d3c7ba4b8.tar.bz2 |
get rid of ExtractValueInst::init's Value argument, it is already passed to the UnaryInstruction ctor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Instructions.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index 4a297b3..a49f6a5 100644 --- a/lib/VMCore/Instructions.cpp +++ b/lib/VMCore/Instructions.cpp @@ -1412,18 +1412,16 @@ InsertValueInst::InsertValueInst(Value *Agg, // ExtractValueInst Class //===----------------------------------------------------------------------===// -void ExtractValueInst::init(Value *Agg, const unsigned *Idx, unsigned NumIdx, +void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx, const std::string &Name) { assert(NumOperands == 1 && "NumOperands not initialized?"); - Op<0>() = Agg; Indices.insert(Indices.end(), Idx, Idx + NumIdx); setName(Name); } -void ExtractValueInst::init(Value *Agg, unsigned Idx, const std::string &Name) { +void ExtractValueInst::init(unsigned Idx, const std::string &Name) { assert(NumOperands == 1 && "NumOperands not initialized?"); - Op<0>() = Agg; Indices.push_back(Idx); setName(Name); @@ -1467,7 +1465,7 @@ ExtractValueInst::ExtractValueInst(Value *Agg, BasicBlock *InsertAtEnd) : UnaryInstruction(checkType(getIndexedType(Agg->getType(), &Idx, 1)), ExtractValue, Agg, InsertAtEnd) { - init(Agg, Idx, Name); + init(Idx, Name); } ExtractValueInst::ExtractValueInst(Value *Agg, @@ -1476,7 +1474,7 @@ ExtractValueInst::ExtractValueInst(Value *Agg, Instruction *InsertBefore) : UnaryInstruction(checkType(getIndexedType(Agg->getType(), &Idx, 1)), ExtractValue, Agg, InsertBefore) { - init(Agg, Idx, Name); + init(Idx, Name); } //===----------------------------------------------------------------------===// |