blob: 48094f75f78ce479976b61aa9d145e1ca9995d48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do compile { target { ! nvptx*-*-* } } } */
/* { 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;
}
|