brintos

brintos / llvm-project-archived public Read only

0
0
Text · 192 B · 50d2204 Raw
10 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s2 3// CHECK: getelementptr inbounds i32, ptr %{{vla|[0-9]}}4extern void f(int *);5int e(int m, int n) {6  int x[n];7  f(x);8  return x[m];9}10