view gcc/testsuite/gcc.dg/stack-usage-2.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

/* { dg-do compile } */
/* { dg-options "-Wstack-usage=512" } */
/* { dg-require-effective-target untyped_assembly } */

int foo1 (void)  /* { dg-bogus "stack usage" } */
{
  char arr[16];
  arr[0] = 1;
  return 0;
}

int foo2 (void)  /* { dg-warning "stack usage is \[0-9\]* bytes" } */
{
  char arr[1024];
  arr[0] = 1;
  return 0;
}

/* The actual warning depends on whether stack space is allocated dynamically
   or statically.  */
int foo3 (void) /* { dg-warning "stack usage (might be)|(is) \[0-9\]* bytes" } */
{
  char arr[1024] __attribute__((aligned (512)));
  arr[0] = 1;
  /* Force dynamic realignment of argument pointer.  */
  __builtin_apply ((void (*)()) foo2, 0, 0);
  return 0;
}

int foo4 (int n) /* { dg-warning "stack usage might be unbounded" } */
{
  char arr[n];
  arr[0] = 1;
  return 0;
}