blob: 72c30e13c95568b1c636cbb1d94eab1441053a67 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -triple i686-apple-darwin %s -emit-llvm -o - | FileCheck %s
2// Set alignment on bitfield accesses.
3
4struct S {
5 int a, b;
6 void *c;
7 unsigned d : 8;
8 unsigned e : 8;
9};
10
11void f0(struct S *a) {
12// CHECK: load {{.*}}, align 4
13// CHECK: store {{.*}}, align 4
14 a->e = 0;
15}