xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2007-09-26-Alignment.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2 extern p(int *);
q(void)3 int q(void) {
4   // CHECK: alloca i32, align 16
5   int x __attribute__ ((aligned (16)));
6   p(&x);
7   return x;
8 }
9