[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2007-08-01-LoadStoreAlign.c
blob5570a5bfa989732e6e176b68767e693d587354a0
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
3 struct p {
4 char a;
5 int b;
6 } __attribute__ ((packed));
8 struct p t = { 1, 10 };
9 struct p u;
11 int main (void) {
12 // CHECK: align 1
13 // CHECK: align 1
14 int tmp = t.b;
15 u.b = tmp;
16 return tmp;