[cfe-commits] r71947 - /cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Eli Friedman eli.friedman at gmail.com
Sat May 16 06:58:01 PDT 2009


Author: efriedma
Date: Sat May 16 08:58:00 2009
New Revision: 71947

URL: http://llvm.org/viewvc/llvm-project?rev=71947&view=rev
Log:
Missing change for r71941 (PR2044).


Modified:
    cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=71947&r1=71946&r2=71947&view=diff

==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Sat May 16 08:58:00 2009
@@ -860,6 +860,8 @@
 def err_typecheck_field_variable_size : Error<
   "fields must have a constant size: 'variable length array in structure' "
   "extension will never be supported">;
+def err_vm_func_decl : Error<
+  "function declaration cannot have variably modified type">;
 
 def err_typecheck_negative_array_size : Error<"array size is negative">;
 def warn_typecheck_function_qualifiers : Warning<





More information about the cfe-commits mailing list