aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/init.c
AgeCommit message (Expand)Author
2009-11-03Reorganize the parsing of decl groups / function definitions so thatJohn McCall
2009-05-31Fix for PR4285: allow intializing a const wchar_t array with a wide Eli Friedman
2009-04-21Explictly track tentative definitions within Sema, then hand thoseDouglas Gregor
2009-03-29hoist checks for ; and in out of ParseInitDeclaratorListAfterFirstDeclaratorChris Lattner
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-03-24Fix PR3868 by making Evaluate handle cases like "(long)&a + 4".Eli Friedman
2009-03-10Add type checking for tentative definitions at the end of theDouglas Gregor
2009-02-23A few small improvements to Evaluate for stuff I noted in FIXMEs.Eli Friedman
2009-02-22Fix test to be legal on 64-bit systems.Eli Friedman
2009-02-18Downgrade the "excess elements in initializer" errors to warnings *inDouglas Gregor
2009-02-07Use our new snazzy stdint.h to make a testcase 64-bit portable.Sebastian Redl
2009-02-02Add iterators to LookupResult, allowing one to iterate over theDouglas Gregor
2009-01-30Closed out a few radars that were addressed by designated initializersDouglas Gregor
2009-01-24Ignore parens when determining if an expr is a string literal. Fixes PR3382.Anders Carlsson
2009-01-23Properly manage the bit-widths of APInts/APSInts in array initialization.Douglas Gregor
2009-01-19Centralize error reporting of improper uses of incomplete types in theDouglas Gregor
2008-11-22Fix test cases broken by quote normalization in diagnostics.Sebastian Redl
2008-11-11Fix PR3031 by silencing follow-on errors in invalid declarations.Chris Lattner
2008-11-07Fix crash caused by this:Argyrios Kyrtzidis
2008-11-03Fix PR3001: if we have an error parsing an initializer, make sure to removeChris Lattner
2008-09-02add the other test case for completeness and to avoid regressions in the futureNuno Lopes
2008-09-02Fix for PR2747: allow pointer->int casts with a null base; these are Eli Friedman
2008-08-25Add test case for function-pointer-cast-of-global as constantDaniel Dunbar
2008-08-19add testcase we already handle.Chris Lattner
2008-08-10wrap some long diagnostics, make 'initializer is not a constant' diagnosticChris Lattner
2008-05-30Make sure to allow assigning a pointer to a bool.Eli Friedman
2008-05-21Fix a couple of bugs found by Neil Booth in the const-ness checking.Eli Friedman
2008-05-04add testcase for pr2050 which is now fixed.Chris Lattner
2008-02-08Improve diagnostic for illegal array initialization.Eli Friedman
2007-12-02all filevar's have static storage. Previously a global withChris Lattner
2007-11-27add several cases that Expr::hasStaticStorage missed, pointed out by Oliver HuntChris Lattner
2007-11-01Implement test/Sema/init.c by treating functions as constants.Chris Lattner