[cfe-commits] r64168 - /cfe/trunk/test/CodeGen/unsupported.c

Daniel Dunbar daniel at zuster.org
Mon Feb 9 13:19:23 PST 2009


Author: ddunbar
Date: Mon Feb  9 15:19:23 2009
New Revision: 64168

URL: http://llvm.org/viewvc/llvm-project?rev=64168&view=rev
Log:
Update test case; VLA's are now supported.

Modified:
    cfe/trunk/test/CodeGen/unsupported.c

Modified: cfe/trunk/test/CodeGen/unsupported.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/unsupported.c?rev=64168&r1=64167&r2=64168&view=diff

==============================================================================
--- cfe/trunk/test/CodeGen/unsupported.c (original)
+++ cfe/trunk/test/CodeGen/unsupported.c Mon Feb  9 15:19:23 2009
@@ -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}}





More information about the cfe-commits mailing list