remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr48826.c
1 /* { dg-options "-O -g -w" } */
2
3 void bar (int *);
4
5 void
6 foo ()
7 {
8   int *const pc = __builtin_return_address (0);
9   bar (pc);
10 }