Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -emit-llvm %s -o - | grep "align 16" | count 2 |
Eli Friedman | 08d7802 | 2008-05-29 11:10:27 +0000 | [diff] [blame] | 2 | |
3 | __attribute((aligned(16))) float a[128]; | ||||
4 | union {int a[4]; __attribute((aligned(16))) float b[4];} u; |