Skip to content
Snippets Groups Projects
Commit 494f4310 authored by Chris Lattner's avatar Chris Lattner
Browse files

filecheckize.

llvm-svn: 146907
parent 7e588a8d
No related branches found
No related tags found
No related merge requests found
// 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment