summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr67351.C
blob: f5bdda6cca7995c72723fa900d2dc5f21a9167b5 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long long uint64;

class MyRgba
{
  uint rgba;

public:
    explicit MyRgba (uint c):rgba (c)
  {
  };

  static MyRgba fromRgba (uchar r, uchar g, uchar b, uchar a)
  {
    return MyRgba (uint (r) << 24
		   | uint (g) << 16 | uint (b) << 8 | uint (a));
  }

  uchar r ()
  {
    return rgba >> 24;
  }
  uchar g ()
  {
    return rgba >> 16;
  }
  uchar b ()
  {
    return rgba >> 8;
  }
  uchar a ()
  {
    return rgba;
  }

  void setG (uchar _g)
  {
    *this = fromRgba (r (), _g, b (), a ());
  }
};

extern MyRgba giveMe ();

MyRgba
test ()
{
  MyRgba a = giveMe ();
  a.setG (0xf0);
  return a;
}

class MyRgba64
{
  uint64 rgba;

public:
    explicit MyRgba64 (uint64 c):rgba (c)
  {
  };

  static MyRgba64 fromRgba64 (ushort r, ushort g, ushort b, ushort a)
  {
    return MyRgba64 (uint64 (r) << 48
		     | uint64 (g) << 32 | uint64 (b) << 16 | uint64 (a));
  }

  ushort r ()
  {
    return rgba >> 48;
  }
  ushort g ()
  {
    return rgba >> 32;
  }
  ushort b ()
  {
    return rgba >> 16;
  }
  ushort a ()
  {
    return rgba;
  }

  void setG (ushort _g)
  {
    *this = fromRgba64 (r (), _g, b (), a ());
  }
};

extern MyRgba64 giveMe64 ();

MyRgba64
test64 ()
{
  MyRgba64 a = giveMe64 ();
  a.setG (0xf0f0);
  return a;
}

/* { dg-final { scan-tree-dump-not "<<" "optimized" } } */
/* { dg-final { scan-tree-dump-not ">>" "optimized" } } */