llvm-6502/test/CFrontend/2007-09-26-Alignment.c
2007-09-26 04:04:29 +00:00

8 lines
140 B
C

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