1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc // CHECK: @foo.p = internal global i8 0, align 32 foo(void)4*f4a2713aSLionel Sambucchar *foo(void) { 5*f4a2713aSLionel Sambuc static char p __attribute__((aligned(32))); 6*f4a2713aSLionel Sambuc return &p; 7*f4a2713aSLionel Sambuc } 8*f4a2713aSLionel Sambuc bar(long n)9*f4a2713aSLionel Sambucvoid bar(long n) { 10*f4a2713aSLionel Sambuc // CHECK: align 32 11*f4a2713aSLionel Sambuc char p[n] __attribute__((aligned(32))); 12*f4a2713aSLionel Sambuc } 13*f4a2713aSLionel Sambuc 14