1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/FrontendC/2009-12-07-BitFieldAlignment.c
Evan Cheng 433b8a8753 Test case for 90787.
llvm-svn: 90791
2009-12-07 19:42:22 +00:00

16 lines
277 B
C

// RUN: %llvmgcc -m32 %s -S -o - | FileCheck %s
// Set alignment on bitfield accesses.
struct S {
int a, b;
void *c;
unsigned d : 8;
unsigned e : 8;
};
void f0(struct S *a) {
// CHECK: %3 = load i32* %2, align 4
// CHECK: store i32 %4, i32* %2, align 4
a->e = 0;
}