aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/vla-1.c
blob: db1d722d6683d1f5304e96d0037748ac6fdd64ff (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc_only -std=gnu99 %s -S |& grep "warning: alignment for"

int foo(int a)
{
  int var[a] __attribute__((__aligned__(32)));
  return 4;
}