view gcc/testsuite/gcc.dg/stack-layout-dynamic-1.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Verify that run time aligned local variables are allocated in the prologue
   in one pass together with normal local variables.  */
/* { dg-do compile } */
/* { dg-options "-O0 -fomit-frame-pointer" } */
/* { dg-require-effective-target ptr32plus } */

extern void bar (void *, void *, void *, void *, void *, void *, void *);
void foo (void)
{
  int i, j, k, l, m;
  __attribute__ ((aligned(65536))) char runtime_aligned_1[512];
  __attribute__ ((aligned(32768))) char runtime_aligned_2[1024];
  bar (&i, &j, &k, &l, &m, &runtime_aligned_1, &runtime_aligned_2);
}
/* { dg-final { scan-assembler-not "cfi_def_cfa_register" } } */