llvm-6502/test/FrontendC/2007-11-07-CopyAggregateAlign.c

4 lines
130 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - | grep "align 2" | count 6
struct A { char s, t, u, v; short a; };
void q() { struct A a, b; a = b; }