blob: 8ab130b0a708abb7ece6262958b153831f2ae276 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2extern p(int *);
3int q(void) {
4 // CHECK: alloca i32, align 16
5 int x __attribute__ ((aligned (16)));
6 p(&x);
7 return x;
8}