Age | Commit message (Expand) | Author | Files | Lines |
2017-06-01 | Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC. | Galina Kistanova | 1 | -1/+2 |
2017-03-23 | Publish RAIIObjectsForParser.h for external usage. | Vassil Vassilev | 1 | -1/+1 |
2017-01-07 | PR23135: Don't instantiate constexpr functions referenced in unevaluated oper... | Richard Smith | 1 | -0/+4 |
2016-07-18 | [NFC] Header cleanup | Mehdi Amini | 1 | -2/+1 |
2016-01-15 | OpaquePtr: Use nullptr construction for ParsedType OpaquePtr typedef | David Blaikie | 1 | -12/+6 |
2015-07-07 | Silence a -Wunused-variable warning; NFC. | Aaron Ballman | 1 | -5/+3 |
2015-07-07 | C++ support for Objective-C lightweight generics. | Douglas Gregor | 1 | -1/+4 |
2015-07-07 | Substitute type arguments into uses of Objective-C interface members. | Douglas Gregor | 1 | -6/+19 |
2015-03-18 | Remove many superfluous SmallString::str() calls. | Yaron Keren | 1 | -1/+1 |
2014-11-21 | Enable ActOnIdExpression to use delayed typo correction for non-C++ code | Kaelyn Takata | 1 | -2/+4 |
2014-05-29 | Refactoring. Remove release and take methods from ActionResult. Rename takeAs... | Nikola Smiljanic | 1 | -6/+6 |
2014-05-21 | [C++11] Use 'nullptr'. Parser edition. | Craig Topper | 1 | -4/+4 |
2014-04-13 | PR19339: Disambiguate lambdas with init-captures from designated initializers | Richard Smith | 1 | -37/+21 |
2014-03-06 | Remove dead return in Parser::MayBeDesignationStart(). | Ted Kremenek | 1 | -2/+0 |
2013-12-24 | Support and use token kinds as diagnostic arguments | Alp Toker | 1 | -1/+1 |
2013-11-23 | Generate a marker token when entering or leaving a submodule when building a | Richard Smith | 1 | -1/+1 |
2013-11-18 | Replaced bool parameters in SkipUntil function with single bit-based parameter. | Alexey Bataev | 1 | -5/+5 |
2013-05-05 | Replace 'MultiExprArg()' with 'None' | Dmitri Gribenko | 1 | -1/+1 |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 1 | -1/+1 |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 1 | -1/+1 |
2012-08-23 | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer | 1 | -2/+1 |
2012-08-23 | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 1 | -1/+1 |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 1 | -3/+3 |
2012-04-10 | Disambiguation of '[[': | Richard Smith | 1 | -0/+5 |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 1 | -6/+6 |
2012-02-17 | De-nest tentative parsing to disambiguate lambdas from designators; no | Douglas Gregor | 1 | -42/+45 |
2012-02-17 | Disambiguate between C++11 lambda expressions and C99 array | Douglas Gregor | 1 | -9/+80 |
2012-02-05 | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 1 | -1/+1 |
2011-12-12 | Implement the Microsoft __if_exists/if_not_exists extension in initializer-list. | Francois Pichet | 1 | -0/+74 |
2011-10-12 | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 1 | -8/+15 |
2011-08-27 | Improve caret location for the GNU old-style field designator warning, from D... | Douglas Gregor | 1 | -1/+1 |
2011-04-15 | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner | 1 | -1/+1 |
2011-01-03 | Implement support for pack expansions in initializer lists and | Douglas Gregor | 1 | -2/+5 |
2010-09-15 | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 1 | -1/+7 |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall | 1 | -6/+6 |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 1 | -6/+6 |
2010-08-24 | Abstract out passing around types and kill off ActionBase. | John McCall | 1 | -5/+7 |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 1 | -5/+5 |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall | 1 | -4/+4 |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall | 1 | -2/+2 |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 1 | -2/+2 |
2010-04-21 | Implement parsing for message sends in Objective-C++. Message sends in | Douglas Gregor | 1 | -28/+64 |
2010-04-21 | Migrate the responsibility for turning the receiver name in an | Douglas Gregor | 1 | -25/+7 |
2010-04-21 | Rework the Parser-Sema interaction for Objective-C message | Douglas Gregor | 1 | -7/+48 |
2010-04-12 | fix a bug I noticed by inspection, correcting two reject-valid bugs. | Chris Lattner | 1 | -3/+8 |
2010-04-11 | fix PR6811 by not parsing 'super' as a magic expression in | Chris Lattner | 1 | -17/+21 |
2010-03-31 | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor | 1 | -4/+3 |
2010-03-31 | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor | 1 | -3/+4 |
2010-03-31 | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor | 1 | -4/+3 |
2009-10-18 | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 1 | -1/+1 |