aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/pr95646.c
blob: cde1b2d9d36a4e39cd916fdcc9eef424a22bd589 (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
25
26
27
28
29
/* { dg-do compile } */
/* { dg-require-effective-target arm_arch_v8m_base_ok } */
/* { dg-add-options arm_arch_v8m_base } */
/* { dg-additional-options "-mcmse -Os" } */
/* { dg-final { check-function-bodies "**" "" } } */

int __attribute__ ((cmse_nonsecure_entry))
foo (void)
{
  return 1;
}
/* { { dg-final { scan-assembler-not "mov\tr9, r0" } } */

/*
** __acle_se_bar:
**	mov	(r[0-3]), r9
**	push	{\1}
** ...
**	pop	{(r[0-3])}
**	mov	r9, \2
** ...
**	bxns	lr
*/
int __attribute__ ((cmse_nonsecure_entry))
bar (void)
{
  __asm__ ("" : : : "r9");
  return 1;
}