freebsd-dev/test/CodeGen/var-align.c
2010-01-01 10:34:51 +00:00

5 lines
168 B
C

// RUN: %clang_cc1 -emit-llvm %s -o - | grep "align 16" | count 2
__attribute((aligned(16))) float a[128];
union {int a[4]; __attribute((aligned(16))) float b[4];} u;