Fix typo 'getter' where 'setter' was intended.
[llvm.git] / test / FrontendC / pr2394.c
blobca8b046f72f739e5dd6d12ffc10af5aa816608be
1 // RUN: %llvmgcc %s -S -o - | FileCheck %s
2 struct __attribute((packed)) x {int a : 24;};
3 int a(struct x* g) {
4 // CHECK: load i24
5 return g->a;