Ted Kremenek | 29b6f38 | 2009-12-23 20:58:27 +0000 | [diff] [blame] | 1 | // RUN: %clang-cc1 -fsyntax-only %s 2>&1 | FileCheck %s |
Ted Kremenek | e7809d4 | 2009-12-23 08:56:00 +0000 | [diff] [blame] | 2 | |
Ted Kremenek | 29b6f38 | 2009-12-23 20:58:27 +0000 | [diff] [blame] | 3 | // IMPORTANT: This test case intentionally DOES NOT use --disable-free. It |
| 4 | // tests that we are properly reclaiming the ASTs and we do not have a double free. |
| 5 | // Previously we tried to free the size expression of the VLA twice. |
Ted Kremenek | e7809d4 | 2009-12-23 08:56:00 +0000 | [diff] [blame] | 6 | |
| 7 | int foo(int x) { |
| 8 | int y[x * 3]; |
| 9 | help |
| 10 | }; |
| 11 | |
Ted Kremenek | 29b6f38 | 2009-12-23 20:58:27 +0000 | [diff] [blame] | 12 | // CHECK: 9:3: error: use of undeclared identifier 'help' |
Ted Kremenek | e7809d4 | 2009-12-23 08:56:00 +0000 | [diff] [blame] | 13 | // CHECK: help |