You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
433 B
15 lines
433 B
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s
|
|
|
|
void testVLAwithSize(int s)
|
|
{
|
|
// CHECK: dbg.declare
|
|
// CHECK: dbg.declare({{.*}}, metadata ![[VAR:.*]], metadata ![[EXPR:.*]])
|
|
// CHECK: ![[VAR]] = !DILocalVariable(name: "vla",{{.*}} line: [[@LINE+2]]
|
|
// CHECK: ![[EXPR]] = !DIExpression(DW_OP_deref)
|
|
int vla[s];
|
|
int i;
|
|
for (i = 0; i < s; i++) {
|
|
vla[i] = i*i;
|
|
}
|
|
}
|