aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Instructions.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index 162601724c..d6252932fa 100644
--- a/include/llvm/Instructions.h
+++ b/include/llvm/Instructions.h
@@ -1638,8 +1638,8 @@ ExtractValueInst::ExtractValueInst(Value *Agg,
const std::string &Name,
Instruction *InsertBefore)
: UnaryInstruction(checkType(getIndexedType(Agg->getType(),
- IdxBegin, IdxEnd)),
- ExtractValue, Agg, InsertBefore) {
+ IdxBegin, IdxEnd)),
+ ExtractValue, Agg, InsertBefore) {
init(IdxBegin, IdxEnd, Name,
typename std::iterator_traits<InputIterator>::iterator_category());
}
@@ -1650,8 +1650,8 @@ ExtractValueInst::ExtractValueInst(Value *Agg,
const std::string &Name,
BasicBlock *InsertAtEnd)
: UnaryInstruction(checkType(getIndexedType(Agg->getType(),
- IdxBegin, IdxEnd)),
- ExtractValue, Agg, InsertAtEnd) {
+ IdxBegin, IdxEnd)),
+ ExtractValue, Agg, InsertAtEnd) {
init(IdxBegin, IdxEnd, Name,
typename std::iterator_traits<InputIterator>::iterator_category());
}