aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr48826.c
blob: 691f74f4dfad79d1a1c4035dcca346e1fefd5f17 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-options "-O -g -w" } */

void bar (int *);

void
foo ()
{
  int *const pc = __builtin_return_address (0);
  bar (pc);
}