Update testcases after LLVM change r243774. Most of these had no need to check `tag:` field, but did so as a way of getting to the `name:` field. In a few cases I've converted the `tag:` checks to `arg:` or `CHECK-NOT: arg:`. llvm-svn: 243775
15 lines
411 B
C
15 lines
411 B
C
// RUN: %clang_cc1 -emit-llvm -g -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;
|
|
}
|
|
}
|