summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-03 10:59:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-03 10:59:41 +0000
commit8959996a75949dcf2d629cd63e03df325dd6f431 (patch)
treefff48bd5827671cf8d0799d4c24a5ef32bffc271
parent3dfabcb249ec77bc9d2cd76e4d64bb0c59527f09 (diff)
downloadllvm-8959996a75949dcf2d629cd63e03df325dd6f431.tar.gz
llvm-8959996a75949dcf2d629cd63e03df325dd6f431.tar.bz2
llvm-8959996a75949dcf2d629cd63e03df325dd6f431.tar.xz
[C++11] MSVC 2012 can't handle list-initialization that calls
a constructor either. Just call the constructor directly. I'll look into making this work with aggregate initialization some other time (when I have someone with MSVC 2012 handy to test ideas). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202688 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/IR/User.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/IR/User.h b/include/llvm/IR/User.h
index 7d3fb494ad..4f8d1b35df 100644
--- a/include/llvm/IR/User.h
+++ b/include/llvm/IR/User.h
@@ -121,10 +121,10 @@ public:
inline op_iterator op_end() { return OperandList+NumOperands; }
inline const_op_iterator op_end() const { return OperandList+NumOperands; }
inline op_range operands() {
- return {op_begin(), op_end()};
+ return op_range(op_begin(), op_end());
}
inline const_op_range operands() const {
- return {op_begin(), op_end()};
+ return const_op_range(op_begin(), op_end());
}
/// Convenience iterator for directly iterating over the Values in the
@@ -166,7 +166,7 @@ public:
return value_op_iterator(op_end());
}
inline iterator_range<value_op_iterator> operand_values() {
- return {value_op_begin(), value_op_end()};
+ return iterator_range<value_op_iterator>(value_op_begin(), value_op_end());
}
// dropAllReferences() - This function is in charge of "letting go" of all