filecheckize.

llvm-svn: 146907
This commit is contained in:
Chris Lattner
2011-12-19 21:11:59 +00:00
parent 7e588a8db0
commit 494f431097

View File

@@ -1,4 +1,7 @@
// RUN: %clang_cc1 -emit-llvm %s -o - | grep "align 16" | count 2
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
__attribute((aligned(16))) float a[128];
union {int a[4]; __attribute((aligned(16))) float b[4];} u;
union {int a[4]; __attribute((aligned(16))) float b[4];} b;
// CHECK: @a = {{.*}}zeroinitializer, align 16
// CHECK: @b = {{.*}}zeroinitializer, align 16