xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/debug-info-vla.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 // RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
2 
testVLAwithSize(int s)3 void testVLAwithSize(int s)
4 {
5 // CHECK:  !"0x100\00vla\00[[@LINE+1]]\008192", {{.*}}, {{.*}}, {{.*}}} ; [ DW_TAG_auto_variable ] [vla] [line [[@LINE+1]]]
6   int vla[s];
7   int i;
8   for (i = 0; i < s; i++) {
9     vla[i] = i*i;
10   }
11 }
12