]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/pr18241-5.c
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / pr18241-5.c
1 /* { dg-do run } */
2 /* { dg-options "-O1" } */ 
3
4 void exit (int);
5
6 int main ()
7 {
8   int a;
9   volatile int *b = &a;
10   a = 1;
11   if (*b != 1)
12     exit (1);
13   return 0;
14 }