convert to filecheck.
[oota-llvm.git] / test / FrontendC / 2007-09-26-Alignment.c
1 // RUN: %llvmgcc -S %s -o - | grep {align 16}
2 extern p(int *);
3 int q(void) {
4   int x __attribute__ ((aligned (16)));
5   p(&x);
6   return x;
7 }