summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Instructions.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-06-06 21:06:32 +0000
committerGabor Greif <ggreif@gmail.com>2008-06-06 21:06:32 +0000
commitcbcc495c1b82332c5c090930015dc32f238b5c1b (patch)
tree88256a0de30854094ec7155eebb394daf9dd3aef /llvm/lib/VMCore/Instructions.cpp
parentef17049bacd4784fe9a0ff6d600aea58d9d7a327 (diff)
downloadbcm5719-llvm-cbcc495c1b82332c5c090930015dc32f238b5c1b.tar.gz
bcm5719-llvm-cbcc495c1b82332c5c090930015dc32f238b5c1b.zip
get rid of ExtractValueInst::init's Value argument, it is already passed to the UnaryInstruction ctor
llvm-svn: 52064
Diffstat (limited to 'llvm/lib/VMCore/Instructions.cpp')
-rw-r--r--llvm/lib/VMCore/Instructions.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp
index 4a297b3345b..a49f6a564c2 100644
--- a/llvm/lib/VMCore/Instructions.cpp
+++ b/llvm/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);
}
//===----------------------------------------------------------------------===//
OpenPOWER on IntegriCloud