From 1efee7879cd4c6dda74f38f807155a8497fd046d Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 9 Feb 2009 21:19:23 +0000 Subject: [PATCH] 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 --- test/CodeGen/unsupported.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/CodeGen/unsupported.c b/test/CodeGen/unsupported.c index 383a06bd1a..c11f1d1ef9 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}} -- 2.40.0