annotate gcc/testsuite/gcc.dg/tree-ssa/alias-32.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do compile } */
kono
parents:
diff changeset
2 /* { dg-options "-O2 -fdump-tree-cddce1" } */
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 int bar (short *p)
kono
parents:
diff changeset
5 {
kono
parents:
diff changeset
6 int res = *p;
kono
parents:
diff changeset
7 struct { int *q1; int *q2; } q;
kono
parents:
diff changeset
8 q.q1 = __builtin_aligned_alloc (128, 128 * sizeof (int));
kono
parents:
diff changeset
9 q.q2 = __builtin_aligned_alloc (128, 128 * sizeof (int));
kono
parents:
diff changeset
10 *q.q1 = 1;
kono
parents:
diff changeset
11 *q.q2 = 2;
kono
parents:
diff changeset
12 return res + *p + *q.q1 + *q.q2;
kono
parents:
diff changeset
13 }
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 /* There should be only one load from *p left. All stores and all
kono
parents:
diff changeset
16 other loads should be removed. Likewise the calls to aligned_alloc. */
kono
parents:
diff changeset
17
kono
parents:
diff changeset
18 /* { dg-final { scan-tree-dump-times "\\\*\[^ \]" 1 "cddce1" } } */
kono
parents:
diff changeset
19 /* { dg-final { scan-tree-dump-not "aligned_alloc" "cddce1" } } */