commit | 45cd28f8e93c194b23b5eab9db5aec05bd15b8a5 | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Wed May 21 05:37:55 2008 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Wed May 21 05:37:55 2008 +0000 |
tree | 02f14bf4540496247060dbcdfddefdfdc6d949d2 | |
parent | 01a8b6cf3e456145801f89b7af5414d8b21d4dd0 [diff] |
Fix this test so that it's valid; the point is to test for the crash, not the missing diagnostic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51365 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/vla.c b/test/Sema/vla.c index fcb533a..e8956fd 100644 --- a/test/Sema/vla.c +++ b/test/Sema/vla.c
@@ -8,7 +8,7 @@ // PR2347 void f (unsigned int m) { - extern int e[2][m]; + int e[2][m]; e[0][0] = 0; }