opnsense-src/test/CodeGen/var-align.c

5 lines
168 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-llvm %s -o - | grep "align 16" | count 2
2009-06-02 13:58:47 -04:00
__attribute((aligned(16))) float a[128];
union {int a[4]; __attribute((aligned(16))) float b[4];} u;