diff options
Diffstat (limited to 'test/FrontendC/vla-1.c')
-rw-r--r-- | test/FrontendC/vla-1.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/FrontendC/vla-1.c b/test/FrontendC/vla-1.c index 76f6c53c1e16..77f78a5e3af7 100644 --- a/test/FrontendC/vla-1.c +++ b/test/FrontendC/vla-1.c @@ -1,5 +1,6 @@ -// RUN: true -// %llvmgcc -std=gnu99 %s -S |& grep {error: "is greater than the stack alignment" } +// RUN: %llvmgcc_only -std=gnu99 %s -S |& grep {warning: alignment for} +// ppc does not support this feature, and gets a fatal error at runtime. +// XFAIL: powerpc int foo(int a) { |