blob: 1638fed05873a67b4533c8cb71fd208589f62ffa [file] [log] [blame]
Duncan Sandsca9976d2007-09-26 04:04:29 +00001// RUN: %llvmgcc -S %s -o - | grep {align 16}
2extern p(int *);
3int q(void) {
4 int x __attribute__ ((aligned (16)));
5 p(&x);
6 return x;
7}