summaryrefslogtreecommitdiff
path: root/test/Parser/declarators.c
AgeCommit message (Expand)Author
2014-08-26revert patch r216469.Fariborz Jahanian
2014-08-26c11- Check for c11 language option as documentation saysFariborz Jahanian
2014-08-13PR20634: add some more cases that can legitimately come after a struct declar...Richard Smith
2014-08-11Sema: Handle declspecs without declarators in records properly in C modeDavid Majnemer
2014-08-08Parser: Array decls with static but without array size are illformedDavid Majnemer
2014-01-05Fix bungled parse recovery in K&R function declarationsAlp Toker
2013-12-31Recover from errors in enum definitionSerge Pavlov
2013-06-08Recognition of empty structures and unions is moved to semantic stageSerge Pavlov
2012-07-02A ':' after an enum-specifier at class scope is a bitfield, not a typo for a ...Richard Smith
2012-04-28switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. ...Chris Lattner
2012-04-06Remove "parse error" in favor of more descriptive diagnostics.David Blaikie
2010-08-26...I forgot to check my new test after adding it, and lo, there's slightly di...John McCall
2010-08-26Make sure we clear TypeSpecOwned when setting TypeSpecType to something whenJohn McCall
2010-07-11change the 'invalid token after top level declarator' message to beChris Lattner
2010-07-11Fix PR7617 by not entering ParseFunctionDefinition whenChris Lattner
2010-05-30Don't try to parse class template specializations in C. It can onlyDouglas Gregor
2010-04-09Improve diagnostics when we fail to convert from a source type to aDouglas Gregor
2010-02-14Improve the diagnostic given when referring to a tag type without a tag (in C)John McCall
2010-02-03Declarators can have grouping parens. This fixes rdar://7608537.Chris Lattner
2010-02-03fix PR6216Chris Lattner
2010-02-02the declspec of a declaration can have storage-class specifiers,Chris Lattner
2010-02-02improve diagnostics on missing ; in a struct. Before:Chris Lattner
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-07-22Prep for new warning.Mike Stump
2009-04-28Simplify the scheme used for keywords, and change the classification Eli Friedman
2009-04-12fix another case that assumed that GetTypeForDeclarator would never return null.Chris Lattner
2009-04-12mark the declspec as invalid when we recover instead of forcing to int,Chris Lattner
2009-04-12Diagnose invalid uses of tagged types with a missing tag. For example, in:Chris Lattner
2009-04-12Implement the first set of changes for PR3963 and rdar://6759604,Chris Lattner
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2008-11-11Fix PR3031 by silencing follow-on errors in invalid declarations.Chris Lattner
2008-04-06reject 'int test(x, x) int x; {}'Chris Lattner
2008-04-06reject 'typedef int y; int test(x, y)'.Chris Lattner
2008-04-05Fix handling of implicit int, resolving PR2012 and reverting (andChris Lattner
2008-02-10Fix PR1999, by emitting a hard error only if an argument declarator is comple...Chris Lattner
2008-01-31Fix PR1965: missing diagnostics for parameters that are missingChris Lattner
2007-12-19reenable this code, fix the testcase.Chris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer