view gcc/testsuite/gcc.dg/Walloca-10.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-require-effective-target alloca } */
/* { dg-options "-Walloca-larger-than=2000 -O2" } */

// Test when the conditionals are incorrectly reversed.

void f (void *);
void foo (__SIZE_TYPE__ len)
{
  void *p;
  if (len < 500)
    p = __builtin_malloc (len);
  else
    p = __builtin_alloca (len); // { dg-warning "argument to .alloca. may be too large" }
  f (p);
}

void bar (__SIZE_TYPE__ len)
{
  void *p;
  if (len > 500)
    p = __builtin_alloca (len); // { dg-warning "argument to .alloca. may be too large" }
  else
    p = __builtin_malloc (len);
  f (p);
}