annotate clang/test/Index/recover-bad-code-rdar_7487294.c @ 173:0572611fdcc8 llvm10 llvm12

reorgnization done
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 11:55:54 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: not %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck %s
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 // IMPORTANT: This test case intentionally DOES NOT use --disable-free. It
anatofuz
parents:
diff changeset
4 // tests that we are properly reclaiming the ASTs and we do not have a double free.
anatofuz
parents:
diff changeset
5 // Previously we tried to free the size expression of the VLA twice.
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7 int foo(int x) {
anatofuz
parents:
diff changeset
8 int y[x * 3];
anatofuz
parents:
diff changeset
9 help
anatofuz
parents:
diff changeset
10 };
anatofuz
parents:
diff changeset
11
anatofuz
parents:
diff changeset
12 // CHECK: 9:3: error: use of undeclared identifier 'help'
anatofuz
parents:
diff changeset
13 // CHECK: help