comparison gcc/testsuite/gcc.dg/vect/vect-117.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
14 static int c[N][N] = {{ 1, 2, 3, 4, 5}, 14 static int c[N][N] = {{ 1, 2, 3, 4, 5},
15 { 7, 9,11, 13,15}, 15 { 7, 9,11, 13,15},
16 {18,21,24,27,30}, 16 {18,21,24,27,30},
17 {34,38,42,46,50}, 17 {34,38,42,46,50},
18 {55,60,65,70,75}}; 18 {55,60,65,70,75}};
19
20 volatile int foo;
21 19
22 __attribute__ ((noinline)) 20 __attribute__ ((noinline))
23 int main1 (int A[N][N], int n) 21 int main1 (int A[N][N], int n)
24 { 22 {
25 23
41 { 39 {
42 int i,j; 40 int i,j;
43 41
44 check_vect (); 42 check_vect ();
45 43
46 foo = 0;
47 main1 (a, N); 44 main1 (a, N);
48 45
49 /* check results: */ 46 /* check results: */
50 47
51 for (i = 0; i < N; i++) 48 for (i = 0; i < N; i++)