brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 5d8670a Raw
9 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s2extern void p(int *);3int q(void) {4  // CHECK: alloca i32, align 165  int x __attribute__ ((aligned (16)));6  p(&x);7  return x;8}9