brintos

brintos / llvm-project-archived public Read only

0
0
Text · 269 B · 6e65175 Raw
14 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s2 3// CHECK: @foo.p = internal global i8 0, align 164char *foo(void) {5  static char p __attribute__((aligned(16)));6  return &p;7}8 9void bar(long n) {10  // CHECK: align 1611  char p[n] __attribute__((aligned(16)));12}13 14