| Commit message (Expand) | Author | Age | Files | Lines |
* | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -0/+5 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -6/+6 |
* | De-nest tentative parsing to disambiguate lambdas from designators; no | Douglas Gregor | 2012-02-17 | 1 | -42/+45 |
* | Disambiguate between C++11 lambda expressions and C99 array | Douglas Gregor | 2012-02-17 | 1 | -9/+80 |
* | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
* | Implement the Microsoft __if_exists/if_not_exists extension in initializer-list. | Francois Pichet | 2011-12-12 | 1 | -0/+74 |
* | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -8/+15 |
* | Improve caret location for the GNU old-style field designator warning, from D... | Douglas Gregor | 2011-08-27 | 1 | -1/+1 |
* | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
* | Implement support for pack expansions in initializer lists and | Douglas Gregor | 2011-01-03 | 1 | -2/+5 |
* | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 2010-09-15 | 1 | -1/+7 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -6/+6 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -6/+6 |
* | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -5/+7 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -5/+5 |
* | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -4/+4 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -2/+2 |
* | Implement parsing for message sends in Objective-C++. Message sends in | Douglas Gregor | 2010-04-21 | 1 | -28/+64 |
* | Migrate the responsibility for turning the receiver name in an | Douglas Gregor | 2010-04-21 | 1 | -25/+7 |
* | Rework the Parser-Sema interaction for Objective-C message | Douglas Gregor | 2010-04-21 | 1 | -7/+48 |
* | fix a bug I noticed by inspection, correcting two reject-valid bugs. | Chris Lattner | 2010-04-12 | 1 | -3/+8 |
* | fix PR6811 by not parsing 'super' as a magic expression in | Chris Lattner | 2010-04-11 | 1 | -17/+21 |
* | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor | 2010-03-31 | 1 | -4/+3 |
* | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor | 2010-03-31 | 1 | -3/+4 |
* | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor | 2010-03-31 | 1 | -4/+3 |
* | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 2009-10-18 | 1 | -1/+1 |
* | Avoid std::string concatenation. | Daniel Dunbar | 2009-10-17 | 1 | -4/+5 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -20/+20 |
* | Merge the ASTVector and ASTOwningVector templates, since they offered | Douglas Gregor | 2009-05-21 | 1 | -1/+0 |
* | Introduce a "-fixit" mode to clang-cc that applies code-modification hints. | Douglas Gregor | 2009-04-02 | 1 | -1/+1 |
* | Make our diagnostics about the obsolete GNU designated-initializer | Douglas Gregor | 2009-03-28 | 1 | -4/+13 |
* | Fix <rdar://problem/6724396>, where we were silently dropping | Douglas Gregor | 2009-03-27 | 1 | -1/+2 |
* | InitListDesignations hasn't been used (ever). Eliminate it, and | Douglas Gregor | 2009-03-20 | 1 | -60/+32 |
* | Put the invalid flag of OwningResult into the Action pointer. | Sebastian Redl | 2009-02-05 | 1 | -1/+1 |
* | Implement and test aggregate initialization in C++. Major changes: | Douglas Gregor | 2009-01-30 | 1 | -3/+3 |
* | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner | 2009-01-29 | 1 | -1/+1 |
* | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner | 2009-01-27 | 1 | -1/+1 |
* | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor | 2009-01-22 | 1 | -14/+22 |
* | Convert more expression actions to smart pointers. | Sebastian Redl | 2009-01-19 | 1 | -5/+4 |
* | Rename move_convert to move_arg and move_res. The new names are less misleadi... | Sebastian Redl | 2009-01-18 | 1 | -1/+1 |
* | Convert remaining expression parsers to smart pointers. Now on to the Action ... | Sebastian Redl | 2008-12-13 | 1 | -7/+7 |
* | Convert a big bunch of expression parsers to use smart pointers. | Sebastian Redl | 2008-12-11 | 1 | -27/+28 |
* | Convert selected expression parsers to use smart pointers. | Sebastian Redl | 2008-12-11 | 1 | -3/+3 |
* | Modify the move emulation according to the excellent design of Howard Hinnant... | Sebastian Redl | 2008-12-10 | 1 | -6/+7 |
* | Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult | Sebastian Redl | 2008-12-09 | 1 | -3/+3 |
* | Consistently use smart pointers for stmt and expr nodes in parser local varia... | Sebastian Redl | 2008-12-09 | 1 | -16/+15 |
* | Use RAII objects to ensure proper destruction of expression and statement AST... | Sebastian Redl | 2008-11-25 | 1 | -8/+8 |
* | Fix <rdar://problem/6150376> [sema] crash on invalid message send. | Steve Naroff | 2008-11-19 | 1 | -3/+6 |
* | Fix PR3001: if we have an error parsing an initializer, make sure to remove | Chris Lattner | 2008-11-03 | 1 | -2/+10 |