Teach mergefunc that intptr_t is the same width as a pointer. We still can't
[llvm.git] / test / FrontendC / 2007-08-01-LoadStoreAlign.c
blob5365c06c25790d688b322b8e25328979c8a5133c
1 // RUN: %llvmgcc -O3 -S -o - %s | grep {align 1} | count 2
2 // RUN: %llvmgcc -O3 -S -o - %s | llc
4 struct p {
5 char a;
6 int b;
7 } __attribute__ ((packed));
9 struct p t = { 1, 10 };
10 struct p u;
12 int main () {
13 int tmp = t.b;
14 u.b = tmp;
15 return tmp;