aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/aligned-section-anchors-nest-1.c
blob: 670e45491c3f6dc7102d5e08d1a54fa8b24bac57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* { dg-do compile } */
/* { dg-require-effective-target section_anchors } */
/* { dg-require-effective-target vect_int } */

#include <stdarg.h>
#include "tree-vect.h"

#define N 32

static int a[N][N];
static int b[N][N];
static int c[N][N];

void clobber(int *);

int *foo(void)
{
  int i;
  int j;

  clobber (&a[0][0]);
  clobber (&b[0][0]);
  clobber (&c[0][0]);

  for (i = 0; i < N; i++) {
      for (j = 0; j < N; j++) {
	  c[j][i] += a[j][i] + c[j][i];
      }
  }
  return &c[0][0];
}

/* { dg-final { scan-ipa-dump-times "Increasing alignment of decl" 3 "increase_alignment" } } */
/* { dg-final { cleanup-ipa-dump "increase_alignment" } } */