Age | Commit message (Expand) | Author |
2012-12-21 | Change checkUnsafeAssignLiteral() to use the new Sema::CheckLiteralKind(). | Ted Kremenek |
2012-12-21 | Hoist logic for classifying Objective-C literals into Sema (proper) for use w... | Ted Kremenek |
2012-12-21 | Use descriptive enum instead of raw integers for checkUnsafeAssignLiteral(). | Ted Kremenek |
2012-12-21 | Sink call to checkUnsafeAssignLiteral() into checkUnsafeAssignObject(). | Ted Kremenek |
2012-12-21 | Remove duplicate includes. | Roman Divacky |
2012-12-21 | Fix regression in r170489: when instantiating a direct initializer which is a | Richard Smith |
2012-12-21 | Extend checkUnsafeAssigns() to also handle assigning an object literal to a w... | Ted Kremenek |
2012-12-21 | Refactor checkUnsafeAssigns() to avoid code duplication with while loop. | Ted Kremenek |
2012-12-21 | Don't eagerly emit a global static merged with a local extern. | Rafael Espindola |
2012-12-20 | Revert "Warn if a __weak variable is initialized with an Objective-C object l... | Ted Kremenek |
2012-12-20 | Warn if a __weak variable is initialized with an Objective-C object literal. | Ted Kremenek |
2012-12-20 | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling |
2012-12-19 | objective-C: Don't warn of unimplemented property of protocols in | Fariborz Jahanian |
2012-12-19 | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling |
2012-12-19 | Fix assertion failure in self-host (and probably bogus template instantiation | Richard Smith |
2012-12-19 | PR13470: Ensure that copy-list-initialization isntantiates as | Richard Smith |
2012-12-19 | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie |
2012-12-18 | Re-commit r170428 changes with Linux style file endings. | Guy Benyei |
2012-12-18 | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei |
2012-12-18 | Add OpenCL images as clang builtin types. | Guy Benyei |
2012-12-18 | Merge storage classes even when contexts don't match. | Rafael Espindola |
2012-12-18 | The underlying type for an enum should be an integer type, not another enum. | Eli Friedman |
2012-12-18 | When warning about a missing prototype because a function declaration is miss... | Anders Carlsson |
2012-12-17 | IdentifierResolver: Remove an unnecessary include and an unused parameter. | Nico Weber |
2012-12-14 | Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. | Argyrios Kyrtzidis |
2012-12-14 | Remove code from Sema::ActOnStartOfFunctionTemplateDef that duplicates what | Argyrios Kyrtzidis |
2012-12-13 | Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, | Eli Friedman |
2012-12-13 | objc: DOn't complain if a (SEL) expression is typecast | Fariborz Jahanian |
2012-12-13 | Add missing check for error return from DefaultLvalueConversion. Fixes <rdar... | Eli Friedman |
2012-12-12 | [objc] For the ARC error that is emitted when a synthesized property implemen... | Argyrios Kyrtzidis |
2012-12-12 | Speeds up parsing of global declarations in cases where the warning | Manuel Klimek |
2012-12-11 | Don't complain about incomplete implementations for methods that are | Douglas Gregor |
2012-12-11 | PR14558: Compute triviality of special members (etc) at the end of the class | Richard Smith |
2012-12-09 | Virtual method overrides can no longer have mismatched calling conventions. ... | Aaron Ballman |
2012-12-09 | Fix overload resolution for the initialization of a multi-dimensional | Richard Smith |
2012-12-09 | PR14550: If a system header contains a bogus constexpr function definition, | Richard Smith |
2012-12-08 | Finish implementing 'selected constructor' rules for triviality in C++11. In | Richard Smith |
2012-12-08 | Remove some remnants of the assumption that there is at most one of each | Richard Smith |
2012-12-08 | Properly compute triviality for explicitly-defaulted or deleted special members. | Richard Smith |
2012-12-08 | Add a FIXME. | Richard Smith |
2012-12-08 | Implement C++03 [dcl.init]p5's checking for value-initialization of references | Richard Smith |
2012-12-07 | Fix analysis based warnings so that all warnings are emitted when compiling | DeLesley Hutchins |
2012-12-07 | Per [dcl.fct.def.default]p1, don't allow variadic special members to be defau... | Richard Smith |
2012-12-06 | Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body | Argyrios Kyrtzidis |
2012-12-06 | Sema: Don't emit a warning when __func__ is used in a lambda outside of a fun... | Benjamin Kramer |
2012-12-06 | Fix http://stackoverflow.com/questions/13521163 | Richard Smith |
2012-12-05 | Format strings: offer a cast to 'unichar' for %C in Objective-C contexts. | Jordan Rose |
2012-12-05 | Format strings: add more expression types that don't need parens to cast. | Jordan Rose |
2012-12-05 | Format strings: a character literal should be printed with %c, not %d. | Jordan Rose |
2012-12-05 | In C++, if we hit an error in the class-head, don't try to parse the class body. | Richard Smith |