aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/inline16.C
blob: 6ee6d76d925dfbf3e8bf31df6a1649d54e477e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/36959
// We shouldn't have to emit fromSlotB just because we need shuf_BZZZ.
// { dg-options -O }
// { dg-final { scan-assembler-not "_ZL9fromSlotBv" } }

static inline int *fromSlotB(void)
{
  static int shuf_BZZZ = 1;
  return &shuf_BZZZ;
}

int *p;

int main(void)
{
  p = fromSlotB();
  return (*p != 1);
}