Lines Matching refs:unroll
9 #pragma unroll in test()
19 #pragma unroll 4 in test()
24 #pragma unroll(8) in test()
29 /* expected-error {{expected ')'}} */ #pragma unroll(4 in test()
30 /* expected-error {{missing argument; expected an integer value}} */ #pragma unroll() in test()
31 /* expected-warning {{extra tokens at end of '#pragma unroll'}} */ #pragma unroll 1 2 in test()
41 /* expected-error {{expected ')'}} */ #pragma unroll(() in test()
42 /* expected-error {{expected expression}} */ #pragma unroll - in test()
43 /* expected-error {{invalid value '0'; must be positive}} */ #pragma unroll(0) in test()
44 /* expected-error {{invalid value '0'; must be positive}} */ #pragma unroll 0 in test()
45 /* expected-error {{value '3000000000' is too large}} */ #pragma unroll(3000000000) in test()
46 /* expected-error {{value '3000000000' is too large}} */ #pragma unroll 3000000000 in test()
51 #pragma unroll in test()
53 #pragma unroll 4 in test()
60 #pragma unroll in test()
67 #pragma unroll 4 in test()
68 …atible directives 'unroll(disable)' and '#pragma unroll(4)'}} */ #pragma clang loop unroll(disable) in test()
73 #pragma unroll(4) in test()
74 …incompatible directives 'unroll(full)' and '#pragma unroll(4)'}} */ #pragma clang loop unroll(full) in test()
79 #pragma unroll(4) in test()
80 …mpatible directives 'unroll(enable)' and '#pragma unroll(4)'}} */ #pragma clang loop unroll(enable) in test()
85 #pragma unroll(4) in test()
86 …pected-error {{incompatible directives '#pragma unroll' and '#pragma unroll(4)'}} */ #pragma unroll in test()
103 #pragma unroll in test()
104 /* expected-error {{duplicate directives '#pragma unroll' and '#pragma unroll'}} */ #pragma unroll in test()
109 #pragma unroll in test()
110 …ror {{duplicate directives '#pragma unroll' and 'unroll(full)'}} */ #pragma clang loop unroll(full) in test()
115 #pragma unroll 4 in test()
116 …ted-error {{duplicate directives '#pragma unroll(4)' and '#pragma unroll(4)'}} */ #pragma unroll(4) in test()
121 #pragma unroll in test()