summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/pr104894-2.c
blob: d1a011ef4d9054d033906a77bb823dde103d0216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* PR target/104894 */
/* { dg-require-effective-target powerpc_elfv2 } */
/* { dg-require-effective-target power10_ok } */
/* { dg-options "-O2 -mdejagnu-cpu=power10 -fno-plt" } */

/* Verify we do not ICE on the following test case and that we emit one
   indirect call and one indirect sibcall, with r12 and CTR containing
   the function addresses.  */

void foo (void);

void
bar (void)
{
  foo ();
  foo ();
}

/* { dg-final { scan-assembler-times {\mmtctr 12\M} 2 } } */
/* { dg-final { scan-assembler-times {\mbctrl\M} 1 } } */
/* { dg-final { scan-assembler-times {\mbctr\M} 1 } } */
/* { dg-final { scan-assembler-not {\mbl\M} } } */