summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-09-26-Alignment.c
blob: 1638fed05873a67b4533c8cb71fd208589f62ffa (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc -S %s -o - | grep {align 16}
extern p(int *);
int q(void) {
  int x __attribute__ ((aligned (16)));
  p(&x);
  return x;
}