xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/PR5060-align.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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 Sambuc char *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 Sambuc void 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