The ARM disassembler did not handle the alignment correctly for VLD*DUP* instructions
[oota-llvm.git] / test / FrontendC / vla-2.c
index d6dda9371f800db226ad0e720000eb2a4f1fc636..555cfc789250beb8cf82efec958050a7228c57b7 100644 (file)
@@ -1,10 +1,10 @@
-// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
+// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
 
 extern void bar(int[]);
 
 void foo(int a)
 {
-  int var[a] __attribute__((__aligned__(32)));
+  int var[a] __attribute__((__aligned__(16)));
   bar(var);
   return;
 }