aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/opt/pr7503-5.C
blob: 236ac93aa3aece57b6a4a247739b32abf6743221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// PR c++/7503
// { dg-do run }
// { dg-options "-O2 -Wno-deprecated" }

extern "C" void abort();

void test1a()
{
  int A = 4;
  int B = 4;

  A >?= B++;
  if (A != 4 || B != 5)
    abort ();
}

void test1b()
{
  int A = 3;
  int B = 5;

  A >?= B++;
  if (A != 5 || B != 6)
    abort ();
}

void test1c()
{
  int A = 5;
  int B = 3;

  A >?= B++;
  if (A != 5 || B != 4)
    abort ();
}


void test2a()
{
  int A = 4;
  int B = 4;

  A <?= B++;
  if (A != 4 || B != 5)
    abort ();
}

void test2b()
{
  int A = 3;
  int B = 5;

  A <?= B++;
  if (A != 3 || B != 6)
    abort ();
}

void test2c()
{
  int A = 5;
  int B = 3;

  A <?= B++;
  if (A != 3 || B != 4)
    abort ();
}


int main()
{
  test1a();
  test1b();
  test1c();

  test2a();
  test2b();
  test2c();

  return 0;
}