]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/volatile3.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / volatile3.c
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-ssa" } */
3
4 volatile int *q;
5 void foo(int i)
6 {
7 volatile int a[2];
8 volatile int *p = &a[i];
9 q = p;
10 }
11
12 /* { dg-final { scan-tree-dump-not "{v}" "ssa" } } */