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

9 lines
194 B
C
Raw Normal View History

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