libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-104.c
blob730efd39bd4a38fddd6e600a4bcb185b7d524b70
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-additional-options "--param max-completely-peel-times=1 -fdump-tree-optimized-details-blocks" } */
4 #include <stdlib.h>
5 #include <stdarg.h>
6 #include "tree-vect.h"
8 #define N 3
10 struct extraction
12 int a[N][N];
13 int b[N][N];
16 static int a[N][N] = {{1,2,3},{4,5,6},{7,8,9}};
17 static int b[N][N] = {{17,24,7},{0,2,3},{4,31,82}};
18 static int c[N][N] = {{1,2,3},{4,5,5},{5,5,5}};
20 __attribute__ ((noinline))
21 int main1 (int x) {
22 int i,j;
23 struct extraction *p;
24 p = (struct extraction *) malloc (sizeof (struct extraction));
26 for (i = 0; i < N; i++)
28 for (j = 0; j < N; j++)
30 p->a[i][j] = a[i][j];
31 p->b[i][j] = b[i][j];
32 asm volatile ("" ::: "memory");
36 /* Not vectorizable: distance = 1. */
37 for (i = 1; i < N; i++)
39 for (j = 0; j < N; j++)
41 *((int *)p + x + i + j + 1) = *((int *)p + x + i + j);
45 /* check results: */
46 #pragma GCC novector
47 for (i = 0; i < N; i++)
49 for (j = 0; j < N; j++)
51 if (p->a[i][j] != c[i][j])
52 abort();
55 return 0;
58 int main (void)
60 check_vect ();
62 return main1 (N);
65 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 0 "vect" } } */
66 /* { dg-final { scan-tree-dump-times "possible dependence between data-refs" 1 "vect" { target { ! vect_multiple_sizes } } } } */
67 /* { dg-final { scan-tree-dump "possible dependence between data-refs" "vect" { target vect_multiple_sizes } } } */
69 /* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */