aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/pr43404.c
blob: 4f2291df6a8793623919d4d0c6865d74af44d708 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-require-effective-target naked_functions } */
/* { dg-options "-O0" } */

__attribute__ ((naked))
void __data_abort(void)
{
  long foo; /* { dg-error "cannot allocate stack for variable" } */
  long* bar = &foo;
}