blob: 5f97b3140926ab58264b1a51c01decc98c71d2df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* { dg-do compile } */
/* { dg-options "-O2 -fcf-protection -mcet" } */
/* { dg-final { scan-assembler-times {\mendbr} 2 } } */
extern int x;
static void
__attribute__ ((noinline, noclone))
test (int i)
{
x = i;
}
extern __typeof (test) foo __attribute__ ((alias ("test")));
void
bar (int i)
{
test (i);
}
|