blob: c92e364dedacb36e7714ef9ac8cc62e929dd4d4c [file] [log] [blame]
Warren Hunt8f8bad72013-10-11 20:19:00 +00001// RUN: %clang_cc1 %s -triple i386-apple-darwin10 -emit-llvm -o - | FileCheck %s
Eric Christopher85e51562011-07-26 22:17:02 +00002struct __attribute((packed)) x {int a : 24;};
3int a(struct x* g) {
Chandler Carruthff0e3a12012-12-06 11:14:44 +00004 // CHECK: load i24
Eric Christopher85e51562011-07-26 22:17:02 +00005 return g->a;
6}