blob: f1091ec2fba3e23f1a0c3587a254274216cdfa71 [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) {
Chandler Carruth72d2dab2012-12-06 11:14:44 +00004 // CHECK: load i24
Eric Christopher3883e662011-07-26 22:17:02 +00005 return g->a;
6}