| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Don't accept qualified 'int' main return types in C++ or standard C mode | Alp Toker | 2014-07-02 | 1 | -22/+27 |
* | Introduce a FunctionDecl::getReturnTypeSourceRange() utility | Alp Toker | 2014-07-02 | 1 | -33/+18 |
* | Import MutableArrayRef into clang namespace. | Craig Topper | 2014-06-28 | 1 | -1/+1 |
* | Fix treatment of types defined in function prototype | Serge Pavlov | 2014-06-25 | 1 | -14/+19 |
* | Allow static_assert inside an anonymous union; fixes PR20021 as well as imple... | Aaron Ballman | 2014-06-24 | 1 | -0/+2 |
* | [c++1z] Implement N3994: a range-based for loop can declare a variable with s... | Richard Smith | 2014-06-19 | 1 | -0/+31 |
* | DiagnoseUnknownTypename always emits a diagnostic and returns true | Reid Kleckner | 2014-06-19 | 1 | -5/+3 |
* | Sema: Static redeclaration after extern declarations is a Microsoft Extension | David Majnemer | 2014-06-18 | 1 | -23/+45 |
* | Inherit dll attributes to static locals | Hans Wennborg | 2014-06-18 | 1 | -0/+12 |
* | Hide the concept of diagnostic levels from lex, parse and sema | Alp Toker | 2014-06-15 | 1 | -24/+12 |
* | Recover from missing 'typename' in sizeof(T::InnerType) | Reid Kleckner | 2014-06-12 | 1 | -1/+1 |
* | Allow definition of dllimport static fields in partial specializations (PR19956) | Hans Wennborg | 2014-06-09 | 1 | -2/+4 |
* | Delay lookup of simple default template arguments under -fms-compatibility | Reid Kleckner | 2014-06-06 | 1 | -0/+44 |
* | Add pointer types to global named register | Renato Golin | 2014-06-05 | 1 | -0/+4 |
* | Downgrade "definition of dllimport static field" error to warning for class t... | Hans Wennborg | 2014-06-04 | 1 | -2/+11 |
* | Sema: Check dll attributes on static data members | Nico Rieck | 2014-05-29 | 1 | -4/+20 |
* | Refactoring. Remove Owned method from Sema. | Nikola Smiljanic | 2014-05-29 | 1 | -2/+2 |
* | Refactoring. Remove release and take methods from ActionResult. Rename takeAs... | Nikola Smiljanic | 2014-05-29 | 1 | -14/+14 |
* | Objective-C. Deprecate use of function definitions | Fariborz Jahanian | 2014-05-28 | 1 | -0/+5 |
* | Rejecting the mutable specifier on a freestanding type declaration, instead o... | Aaron Ballman | 2014-05-26 | 1 | -2/+7 |
* | [C++11] Use 'nullptr'. Sema edition. | Craig Topper | 2014-05-26 | 1 | -162/+167 |
* | IRGen: Add more tests for dll attributes | Nico Rieck | 2014-05-25 | 1 | -1/+2 |
* | Emit used/dllexport inline method definitions in nested classes (PR19743, PR1... | Hans Wennborg | 2014-05-23 | 1 | -0/+4 |
* | Implemented support for "pragma clang optimize on/off", based on attribute 'o... | Dario Domizioli | 2014-05-23 | 1 | -0/+5 |
* | Improved location for non-constant initializers diagnostics. | Abramo Bagnara | 2014-05-22 | 1 | -8/+12 |
* | An inline function redeclaration does not drop the dllimport attribute | Hans Wennborg | 2014-05-22 | 1 | -2/+4 |
* | Reduce string duplication | Alp Toker | 2014-05-20 | 1 | -7/+2 |
* | Allow dllimport on function definitions when they're template instantiations | Hans Wennborg | 2014-05-19 | 1 | -1/+2 |
* | Non-allocatable Global Named Register | Renato Golin | 2014-05-19 | 1 | -7/+8 |
* | Allow dllimport/dllexport on inline functions and adjust the linkage. | Hans Wennborg | 2014-05-15 | 1 | -14/+6 |
* | When we generate a redeclaration for an | John McCall | 2014-05-14 | 1 | -1/+9 |
* | Create a redeclaration when an elaborated type specifier | John McCall | 2014-05-14 | 1 | -3/+6 |
* | PR19713: Don't warn on unused static inline functions, even if the 'inline' was | Richard Smith | 2014-05-11 | 1 | -2/+3 |
* | Consolidate single void paramter checking | Alp Toker | 2014-05-11 | 1 | -6/+2 |
* | Add support for partial jump scope checking | Alp Toker | 2014-05-09 | 1 | -2/+0 |
* | If an instantiation of a template is required to be a complete type, check | Richard Smith | 2014-05-07 | 1 | -1/+6 |
* | Make module self-import an error | Ben Langmuir | 2014-05-05 | 1 | -0/+7 |
* | Minor cleanups, no behavior change. | Nico Weber | 2014-05-03 | 1 | -11/+9 |
* | Fix a bunch of mislayered clang/Lex includes from Sema | Alp Toker | 2014-05-03 | 1 | -19/+19 |
* | Rewrite NRVO determination. Track NRVO candidates on the parser Scope and app... | Nick Lewycky | 2014-05-03 | 1 | -17/+8 |
* | __thread: Move constant init check to CheckCompleteVariableDeclaration | Reid Kleckner | 2014-04-30 | 1 | -21/+20 |
* | -Wunused-parameter: Don't fire on defaulted or deleted functions | Reid Kleckner | 2014-04-30 | 1 | -1/+3 |
* | CodeGen: Fix linkage of reference temporaries | David Majnemer | 2014-04-28 | 1 | -1/+2 |
* | PR19558: don't produce an "unused variable" warning for a variable template p... | Richard Smith | 2014-04-25 | 1 | -1/+2 |
* | Initial implementation of -modules-earch-all option, for searching for symbol... | John Thompson | 2014-04-23 | 1 | -6/+9 |
* | Nitpicky refactoring -- use of nullptr and auto, made a bit more const-correc... | Aaron Ballman | 2014-04-17 | 1 | -12/+12 |
* | Refactor all the checking for missing 'template<>'s when a declaration has a | Richard Smith | 2014-04-17 | 1 | -43/+24 |
* | Don't emit an ExtWarn on declarations of variable template specializations; | Richard Smith | 2014-04-17 | 1 | -6/+6 |
* | [objc] -[NSObject init] is documented to not do anything, don't warn if subcl... | Argyrios Kyrtzidis | 2014-04-16 | 1 | -2/+14 |
* | Fix a comment to match the implementation | Alp Toker | 2014-04-15 | 1 | -1/+1 |