| Commit message (Expand) | Author | Age | Files | Lines |
| * | When we notice that a member function is defined with "= delete" or "= | Douglas Gregor | 2011-11-07 | 1 | -1/+1 |
| * | Tighten up the conditions under which we consider ourselves to be | Douglas Gregor | 2011-11-07 | 1 | -2/+4 |
| * | Check for unexpanded parameter packs in the name that guards a | Douglas Gregor | 2011-10-25 | 1 | -1/+5 |
| * | Rework Microsoft __if_exists/__if_not_exists parsing and semantic | Douglas Gregor | 2011-10-24 | 1 | -33/+48 |
| * | Treat the Microsoft/Borland keyword "__except" as a context-sensitive | Douglas Gregor | 2011-10-21 | 1 | -0/+10 |
| * | 'extern template' is a C++11 feature. Add an Extension for C++98 (this matches | Richard Smith | 2011-10-20 | 1 | -0/+3 |
| * | Implement -Wc++98-compat warnings for the parser. | Richard Smith | 2011-10-15 | 1 | -7/+9 |
| * | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -37/+70 |
| * | Add typo correction for type names. | Kaelyn Uhrain | 2011-10-11 | 1 | -2/+7 |
| * | Move some bool flags out of function parameter lists. | Kaelyn Uhrain | 2011-10-11 | 1 | -2/+2 |
| * | Revert r140589. It was causing failures during llvm compilation: | Bill Wendling | 2011-09-27 | 1 | -6/+1 |
| * | Add typo correction for the type name in C++ "new" statements | Kaelyn Uhrain | 2011-09-27 | 1 | -1/+6 |
| * | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -1/+1 |
| * | Implement the Objective-C 'instancetype' type, which is an alias of | Douglas Gregor | 2011-09-08 | 1 | -0/+1 |
| * | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -6/+18 |
| * | Switch __import__ over to __import_module__, so we don't conflict with | Douglas Gregor | 2011-08-31 | 1 | -2/+3 |
| * | objective-c: Treat top-level objective-c declarations | Fariborz Jahanian | 2011-08-27 | 1 | -4/+1 |
| * | Introduce support for a simple module import declaration, which | Douglas Gregor | 2011-08-26 | 1 | -0/+24 |
| * | Reverse r138567 until a buildbot failure is investigated. | Fariborz Jahanian | 2011-08-25 | 1 | -1/+4 |
| * | objc -arse: Use DeclGroup for forward class declarations; | Fariborz Jahanian | 2011-08-25 | 1 | -4/+1 |
| * | objc - Simplify switing objc decl context by using | Fariborz Jahanian | 2011-08-22 | 1 | -10/+6 |
| * | Restore patch I reversed in r138040. Known buildbot | Fariborz Jahanian | 2011-08-22 | 1 | -1/+10 |
| * | Revers r138040. Need to look at a few buildbot failures. | Fariborz Jahanian | 2011-08-19 | 1 | -10/+1 |
| * | objective-c: Bring objective-c handling of decl context | Fariborz Jahanian | 2011-08-19 | 1 | -1/+10 |
| * | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -0/+3 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -1/+1 |
| * | Some documentation fixes for the parser, from John Freeman | Douglas Gregor | 2011-07-05 | 1 | -3/+2 |
| * | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis | 2011-06-22 | 1 | -5/+16 |
| * | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith | 2011-06-11 | 1 | -0/+16 |
| * | Add support for Microsoft __if_exists, __if_not_exists extension at class scope. | Francois Pichet | 2011-05-25 | 1 | -2/+2 |
| * | Implement explicit specialization of explicitly-defaulted constructors. | Alexis Hunt | 2011-05-23 | 1 | -68/+39 |
| * | Properly parse the 'default' and 'delete' keywords. | Alexis Hunt | 2011-05-12 | 1 | -1/+80 |
| * | Add support for _if_exists and __if_not_exists at namespace/global scope. | Francois Pichet | 2011-05-07 | 1 | -0/+83 |
| * | Parsing/AST support for Structured Exception Handling | John Wiegley | 2011-04-28 | 1 | -0/+28 |
| * | Extend Sema::ClassifyName() to support C++, ironing out a few issues | Douglas Gregor | 2011-04-27 | 1 | -1/+2 |
| * | Recognize gcc's ms_struct pragma (and ignore for now). | Fariborz Jahanian | 2011-04-25 | 1 | -0/+5 |
| * | Downgrade unnecessary "typename" from error to warning in Microsoft mode. | Francois Pichet | 2011-04-24 | 1 | -1/+4 |
| * | Correctly emit a diagnostic for multiple templated function definitions in -f... | Francois Pichet | 2011-04-22 | 1 | -0/+1 |
| * | Add -fdelayed-template-parsing option. Using this option all templated functi... | Francois Pichet | 2011-04-22 | 1 | -0/+47 |
| * | C1X: implement static asserts | Peter Collingbourne | 2011-04-15 | 1 | -0/+1 |
| * | Improve recovery (error + fix-it) when parsing type dependent template name w... | Francois Pichet | 2011-03-27 | 1 | -1/+2 |
| * | Extend the new 'availability' attribute with support for an | Douglas Gregor | 2011-03-26 | 1 | -0/+1 |
| * | Insomniac refactoring: change how the parser allocates attributes so that | John McCall | 2011-03-24 | 1 | -2/+2 |
| * | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor | 2011-03-23 | 1 | -0/+4 |
| * | Migrate 'PrettySTackTraceParserEntry' object out of Parser, and have it const... | Ted Kremenek | 2011-03-22 | 1 | -1/+1 |
| * | Make sure that we always pop a function's scope *before* we call | Douglas Gregor | 2011-03-16 | 1 | -2/+3 |
| * | Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. | Abramo Bagnara | 2011-03-03 | 1 | -2/+4 |
| * | Push nested-name-specifier source-location information into dependent | Douglas Gregor | 2011-03-02 | 1 | -2/+2 |
| * | Reinstate the introduction of source-location information for | Douglas Gregor | 2011-03-01 | 1 | -1/+3 |
| * | Revert r126748, my second attempt at nested-name-specifier source | Douglas Gregor | 2011-03-01 | 1 | -3/+1 |