Update test case; VLA's are now supported.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64168 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/unsupported.c b/test/CodeGen/unsupported.c
index 383a06b..c11f1d1 100644
--- a/test/CodeGen/unsupported.c
+++ b/test/CodeGen/unsupported.c
@@ -1,6 +1,3 @@
 // RUN: clang -verify -emit-llvm -o - %s 
 
-int f0(int x) {
-  int vla[x];
-  return vla[x-1]; // expected-error {{cannot compile this return inside scope with VLA yet}}
-}
+void *x = L"foo"; // expected-error {{cannot compile this wide string yet}}