summaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/patchable_function_entry-default.c
blob: 0dcf1181dde93a2920cd07bf8c83ce40e259bc60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O2 -fpatchable-function-entry=3,1" } */
/* { dg-final { scan-assembler-times "nop" 3 } } */

extern int a;

/* Nothing declared must not mean anything.  */
int f3 (void);

/* F3 should get a default-sized NOP area.  */
int
__attribute__((noinline))
f3 (void)
{
  return 5*a;
}