aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/s390/hotpatch-compile-16.c
blob: 3c5c782720628106fd47601c818c6f3751e0704f (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
/* A warning will be issued when requesting hotpatching on a nested function.  */

/* { dg-do compile } */
/* { dg-options "-O3 -mzarch" } */

typedef int (*fn_t)(void);

fn_t hp1(void)
{
  __attribute__((hotpatch(0,0)))
  int nested1(void)
  { return 1; }

  return nested1;
}

fn_t hp2(void)
{
  __attribute__ ((hotpatch(1,2)))
  int nested2(void) /* { dg-warning "hotpatching is not compatible with nested functions" } */
  { return 2; }

  return nested2;
}