blob: ca8b046f72f739e5dd6d12ffc10af5aa816608be [file] [log] [blame]
Stuart Hastings08bbda32010-05-05 22:49:33 +00001// RUN: %llvmgcc %s -S -o - | FileCheck %s
2struct __attribute((packed)) x {int a : 24;};
3int a(struct x* g) {
4 // CHECK: load i24
5 return g->a;
6}