]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/postincr-1.c
Package description and copyright added.
[pkg-cerco/acc.git] / tests / GCCTestSuite / postincr-1.c
1 /* Simple test for proper postincrement semantics.  */
2 /* { dg-do run } */
3
4 extern void exit (int);
5
6 int i=0;
7 int c=0;
8 int *f ()
9 {
10   ++c;
11   return &i;
12 }
13
14 int main ()
15 {
16   int r;
17   r = (*f())++;
18   if (!(r == 0 && i == 1 && c == 1))
19     exit (1);
20   return 0;
21 }