summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/code-gen1.C
blob: 2c699b451d4a1204f709cccd8dd2701a55bf4b5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do run  }
// GROUPS passed code-generation
// code-gen file
// From: Jeffrey C. Gealow <jgealow@mtl.mit.edu>
// Date:     Sun, 4 Jul 93 18:57:53 -0400
// Subject:  increment bug (0 + 1 + 1 = 3)
// Message-ID: <9307042257.AA23538@mtl.mit.edu>

#include <stdio.h>

int main()
{
  int i = 0;
  (++i)++;
  if (i == 2)
    printf ("PASS\n");
  else
    { printf ("FAIL\n"); return 1; }
}