On Mar 7, 2011, at 2:43 PM, Matt Beaumont-Gay wrote: > Hi Carl, > > Looks like this broke a number of tests: > > test/Analysis/string.c > test/Sema/align-x86.c > test/Sema/anonymous-struct-union.c > test/Sema/arm-layout.c > test/Sema/const-eval.c > test/Sema/missing-field-initializers.c > test/Sema/warn-gnu-designators.c > test/SemaObjC/sizeof-interface.m
Yeah, I just got an email about that. I'll take a look at those tests and modify them as necessary. -- Carl > On Mon, Mar 7, 2011 at 14:19, Carl Norum <[email protected]> wrote: >> Author: carl >> Date: Mon Mar 7 16:19:06 2011 >> New Revision: 127177 >> >> URL: http://llvm.org/viewvc/llvm-project?rev=127177&view=rev >> Log: >> Change diagnostic message from "Extension" to "ExtWarn" to find more >> problems with missing semicolons. >> >> Modified: >> cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td >> >> Modified: cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td >> URL: >> http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td?rev=127177&r1=127176&r2=127177&view=diff >> ============================================================================== >> --- cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td (original) >> +++ cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td Mon Mar 7 >> 16:19:06 2011 >> @@ -111,7 +111,7 @@ >> "expected ';' at end of declaration">; >> def err_expected_semi_decl_list : Error< >> "expected ';' at end of declaration list">; >> -def ext_expected_semi_decl_list : Extension< >> +def ext_expected_semi_decl_list : ExtWarn< >> "expected ';' at end of declaration list">; >> def err_expected_member_name_or_semi : Error< >> "expected member name or ';' after declaration specifiers">; >> >> >> _______________________________________________ >> cfe-commits mailing list >> [email protected] >> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits >> _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
