1*10658691SFlorian Hahn // RUN: %clang_cc1 -fsyntax-only -pedantic -fenable-matrix -std=c++11 -verify -triple x86_64-apple-darwin %s
2*10658691SFlorian Hahn 
3*10658691SFlorian Hahn using matrix_double_t = double __attribute__((matrix_type(6, 6)));
4*10658691SFlorian Hahn using matrix_float_t = float __attribute__((matrix_type(6, 6)));
5*10658691SFlorian Hahn using matrix_int_t = int __attribute__((matrix_type(6, 6)));
6*10658691SFlorian Hahn 
matrix_var_dimensions(int Rows,unsigned Columns,char C)7*10658691SFlorian Hahn void matrix_var_dimensions(int Rows, unsigned Columns, char C) {
8*10658691SFlorian Hahn   using matrix1_t = int __attribute__((matrix_type(Rows, 1)));    // expected-error{{matrix_type attribute requires an integer constant}}
9*10658691SFlorian Hahn   using matrix2_t = int __attribute__((matrix_type(1, Columns))); // expected-error{{matrix_type attribute requires an integer constant}}
10*10658691SFlorian Hahn   using matrix3_t = int __attribute__((matrix_type(C, C)));       // expected-error{{matrix_type attribute requires an integer constant}}
11*10658691SFlorian Hahn   using matrix4_t = int __attribute__((matrix_type(-1, 1)));      // expected-error{{matrix row size too large}}
12*10658691SFlorian Hahn   using matrix5_t = int __attribute__((matrix_type(1, -1)));      // expected-error{{matrix column size too large}}
13*10658691SFlorian Hahn   using matrix6_t = int __attribute__((matrix_type(0, 1)));       // expected-error{{zero matrix size}}
14*10658691SFlorian Hahn   using matrix7_t = int __attribute__((matrix_type(1, 0)));       // expected-error{{zero matrix size}}
15*10658691SFlorian Hahn   using matrix7_t = int __attribute__((matrix_type(char, 0)));    // expected-error{{expected '(' for function-style cast or type construction}}
16*10658691SFlorian Hahn   using matrix8_t = int __attribute__((matrix_type(1048576, 1))); // expected-error{{matrix row size too large}}
17*10658691SFlorian Hahn }
18*10658691SFlorian Hahn 
19*10658691SFlorian Hahn struct S1 {};
20*10658691SFlorian Hahn 
21*10658691SFlorian Hahn enum TestEnum {
22*10658691SFlorian Hahn   A,
23*10658691SFlorian Hahn   B
24*10658691SFlorian Hahn };
25*10658691SFlorian Hahn 
matrix_unsupported_element_type()26*10658691SFlorian Hahn void matrix_unsupported_element_type() {
27*10658691SFlorian Hahn   using matrix1_t = char *__attribute__((matrix_type(1, 1)));    // expected-error{{invalid matrix element type 'char *'}}
28*10658691SFlorian Hahn   using matrix2_t = S1 __attribute__((matrix_type(1, 1)));       // expected-error{{invalid matrix element type 'S1'}}
29*10658691SFlorian Hahn   using matrix3_t = bool __attribute__((matrix_type(1, 1)));     // expected-error{{invalid matrix element type 'bool'}}
30*10658691SFlorian Hahn   using matrix4_t = TestEnum __attribute__((matrix_type(1, 1))); // expected-error{{invalid matrix element type 'TestEnum'}}
31*10658691SFlorian Hahn }
32