blob: e43281a3cd3e6f531d9c2846e446e1b0eeb94c16 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2struct __attribute((packed)) x {int a : 24;};
3int a(struct x* g) {
4 // CHECK: load i16
5 // CHECK: load i8
6 return g->a;
7}