Make matrix-type-builtins.m pass also on platforms where the type is 'unsigned long long'

This commit is contained in:
Hans Wennborg 2020-06-18 14:06:55 +02:00
parent 3324598844
commit d8c612b7ea
1 changed files with 1 additions and 1 deletions

View File

@ -27,5 +27,5 @@ double test_store(MatrixValue *mv, float *Ptr) {
__builtin_matrix_column_major_store(mv.value, mv.value, mv.value);
// expected-error@-1 {{second argument must be a pointer to a valid matrix element type}}
// expected-error@-2 {{casting 'double4x4' (aka 'double __attribute__((matrix_type(4, 4)))') to incompatible type 'unsigned long'}}
// expected-error@-2 {{casting 'double4x4' (aka 'double __attribute__((matrix_type(4, 4)))') to incompatible type 'unsigned long}}
}