blob: 1638fed05873a67b4533c8cb71fd208589f62ffa [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | grep {align 16}
extern p(int *);
int q(void) {
int x __attribute__ ((aligned (16)));
p(&x);
return x;
}