llvm-6502/test/FrontendC/2007-09-26-Alignment.c

8 lines
140 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - | grep {align 16}
extern p(int *);
int q(void) {
int x __attribute__ ((aligned (16)));
p(&x);
return x;
}