1 /* { dg-require-effective-target vect_int } */
19 void foo (unsigned int *__restrict__ pInput
, unsigned int *__restrict__ pOutput
)
21 unsigned int i
, a
, b
, c
;
23 for (i
= 0; i
< N
/ 3; i
++)
29 *pOutput
++ = M00
* a
+ M01
* b
+ M02
* c
;
30 *pOutput
++ = M10
* a
+ M11
* b
+ M12
* c
;
31 *pOutput
++ = M20
* a
+ M21
* b
+ M22
* c
;
35 int main (int argc
, const char* argv
[])
37 unsigned int input
[N
], output
[N
], i
;
38 unsigned int check_results
[N
] = {1470, 395, 28271, 5958, 1655, 111653, 10446, 2915, 195035, 14934, 4175, 278417, 19422, 5435, 361799, 0};
42 for (i
= 0; i
< N
; i
++)
46 __asm__
volatile ("");
51 for (i
= 0; i
< N
; i
++)
53 if (output
[i
] != check_results
[i
])
55 __asm__
volatile ("");
61 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_perm } } } */
62 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { target vect_perm } } } */
63 /* { dg-final { cleanup-tree-dump "vect" } } */