1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Try to appease buildbots.

It seems ArrayRefs to multi-dimensional arrays confuse some compilers.

llvm-svn: 230554
This commit is contained in:
Frederic Riss 2015-02-25 22:07:43 +00:00
parent 49a12f79c1
commit 1cc35be9cc

View File

@ -330,7 +330,7 @@ static ArrayRef<OperandType[2]> getOperandTypes() {
#undef DECLARE_OP0
#undef DECLARE_OP1
#undef DECLARE_OP2
return OpTypes;
return ArrayRef<OperandType[2]>(&OpTypes[0], DW_CFA_restore+1);
}
static ArrayRef<OperandType[2]> OpTypes = getOperandTypes();