aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Instructions.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-06-23 16:48:17 +0000
committerDan Gohman <gohman@apple.com>2008-06-23 16:48:17 +0000
commitbe53c5aec593c812dbc285fe5a3d655edb319a87 (patch)
treeaf2147c18c5725b376244468f6a9e784787a8254 /lib/VMCore/Instructions.cpp
parentd605204205b2d5110be62d1aac2bbb5f61ef9be4 (diff)
downloadexternal_llvm-be53c5aec593c812dbc285fe5a3d655edb319a87.zip
external_llvm-be53c5aec593c812dbc285fe5a3d655edb319a87.tar.gz
external_llvm-be53c5aec593c812dbc285fe5a3d655edb319a87.tar.bz2
Remove two convenience constructors because they're now private, and the
private implementation doesn't really need the convenience. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Instructions.cpp')
-rw-r--r--lib/VMCore/Instructions.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp
index 1ce58eb..4bcd560 100644
--- a/lib/VMCore/Instructions.cpp
+++ b/lib/VMCore/Instructions.cpp
@@ -1465,24 +1465,6 @@ const Type* ExtractValueInst::getIndexedType(const Type *Agg,
return getIndexedType(Agg, &Idx, 1);
}
-ExtractValueInst::ExtractValueInst(Value *Agg,
- unsigned Idx,
- const std::string &Name,
- BasicBlock *InsertAtEnd)
- : UnaryInstruction(checkType(getIndexedType(Agg->getType(), &Idx, 1)),
- ExtractValue, Agg, InsertAtEnd) {
- init(Idx, Name);
-}
-
-ExtractValueInst::ExtractValueInst(Value *Agg,
- unsigned Idx,
- const std::string &Name,
- Instruction *InsertBefore)
- : UnaryInstruction(checkType(getIndexedType(Agg->getType(), &Idx, 1)),
- ExtractValue, Agg, InsertBefore) {
- init(Idx, Name);
-}
-
//===----------------------------------------------------------------------===//
// BinaryOperator Class
//===----------------------------------------------------------------------===//