mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
[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
This commit is contained in:
parent
3dfabcb249
commit
8959996a75
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user