1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s 2*f4a2713aSLionel Sambuc extern p(int *); q(void)3*f4a2713aSLionel Sambucint q(void) { 4*f4a2713aSLionel Sambuc // CHECK: alloca i32, align 16 5*f4a2713aSLionel Sambuc int x __attribute__ ((aligned (16))); 6*f4a2713aSLionel Sambuc p(&x); 7*f4a2713aSLionel Sambuc return x; 8*f4a2713aSLionel Sambuc } 9