aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/no-r11-3.c
blob: 9cc830909211f814625ea0f5fba00be0071a023e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile { target { powerpc*-*-* && lp64 } } } */
/* { dg-skip-if "" { *-*-darwin* } { "*" } { "" } } */
/* { dg-skip-if "" { powerpc_elfv2 } { "*" } { "" } } */
/* { dg-options "-O2 -mno-pointers-to-nested-functions" } */

extern void ext_call (int (func) (void));

int
outer_func (int init)	/* { dg-error "-mno-pointers-to-nested-functions option" "" } */
{
  int value = init;

  int inner (void)
  {
    return ++value;
  }

  ext_call (inner);
  return value;
}