1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm < %s | grep "align 16" | count 2 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc typedef struct __attribute((aligned(16))) {int x[4];} ff; 4*f4a2713aSLionel Sambuc a()5*f4a2713aSLionel Sambucint a() { 6*f4a2713aSLionel Sambuc ff a; 7*f4a2713aSLionel Sambuc struct {int x[4];} b __attribute((aligned(16))); 8*f4a2713aSLionel Sambuc } 9