| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add a warning for implicit conversion from function literals (and static | Lang Hames | 2011-12-05 | 1 | -0/+19 |
* | Revert r145697 and dependent patch r145702. It added a dependency from | Nick Lewycky | 2011-12-02 | 1 | -1/+1 |
* | Make conversion specifier warning refer to typedef if possible. | Hans Wennborg | 2011-12-02 | 1 | -1/+1 |
* | Specially whitelist the selector 'addOperationWithBlock:' for the retain-cycl... | Ted Kremenek | 2011-12-01 | 1 | -1/+7 |
* | Suppress -Warray-bounds for classes (not just structs) where the last field is | Matt Beaumont-Gay | 2011-11-29 | 1 | -2/+5 |
* | Merge branch 'yo-dawg-i-herd-u-like-arrays' | Matt Beaumont-Gay | 2011-11-29 | 1 | -0/+11 |
* | When checking a call to a builtin atomic operation, be sure to | Douglas Gregor | 2011-11-28 | 1 | -13/+199 |
* | Fix Neon builtin pointer argument checking for "sret" builtins. | Bob Wilson | 2011-11-16 | 1 | -22/+18 |
* | Constant expression evaluation: support for evaluation of structs and unions of | Richard Smith | 2011-11-10 | 1 | -3/+3 |
* | There's no good reason to track temporaries in ExprWithCleanups, | John McCall | 2011-11-10 | 1 | -0/+6 |
* | Mark the overloaded atomic builtins as having custom type checking, | Douglas Gregor | 2011-11-08 | 1 | -8/+0 |
* | Check pointer types for arguments of Neon load/store macros. rdar://9958031 | Bob Wilson | 2011-11-08 | 1 | -3/+54 |
* | Clean up type flags for overloaded Neon builtins. No functional change. | Bob Wilson | 2011-11-08 | 1 | -23/+21 |
* | Rip out CK_GetObjCProperty. | John McCall | 2011-11-07 | 1 | -16/+0 |
* | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -0/+20 |
* | Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will | Richard Smith | 2011-10-29 | 1 | -3/+3 |
* | Fix for PR9751 to change the behavior of -Wformat warnings. If the format | Richard Trieu | 2011-10-28 | 1 | -117/+218 |
* | Restore r142914 and r142915, now with missing file and apparent | John McCall | 2011-10-25 | 1 | -1/+2 |
* | Revert r142914 and r142915, due to possibly missing file. | NAKAMURA Takumi | 2011-10-25 | 1 | -2/+1 |
* | Introduce a placeholder type for "pseudo object" | John McCall | 2011-10-25 | 1 | -1/+2 |
* | Only emit implicit constant conversion truncation warnings in reachable code.... | Ted Kremenek | 2011-10-22 | 1 | -3/+5 |
* | Move static array parameter checks to SemaExpr, per Doug's request | Peter Collingbourne | 2011-10-19 | 1 | -61/+0 |
* | Suggest %zu for size_t args to printf. | Hans Wennborg | 2011-10-18 | 1 | -1/+1 |
* | Add sema checks for calls to functions taking static array parameters | Peter Collingbourne | 2011-10-16 | 1 | -0/+61 |
* | Add template instantiation support for AtomicExpr. | Eli Friedman | 2011-10-14 | 1 | -22/+15 |
* | Only warn in -Wliteral-conversion if the conversion loses information | Matt Beaumont-Gay | 2011-10-14 | 1 | -19/+7 |
* | Extend -Wno-sizeof-array-argument to strncpy and friends. | Nico Weber | 2011-10-13 | 1 | -4/+43 |
* | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman | 2011-10-11 | 1 | -0/+170 |
* | Constant expression evaluation refactoring: | Richard Smith | 2011-10-10 | 1 | -11/+4 |
* | Don't analyze comparisons in type- or value-dependent | Douglas Gregor | 2011-10-10 | 1 | -0/+3 |
* | Rename TagDecl::isDefinition -> isCompleteDefinition | John McCall | 2011-10-07 | 1 | -1/+1 |
* | Refactor the analysis of C++ cast expressions so that even | John McCall | 2011-10-05 | 1 | -7/+8 |
* | Do not warn about empty format strings when there are no data arguments. Fix... | Ted Kremenek | 2011-09-29 | 1 | -7/+6 |
* | Unnecessary else | David Blaikie | 2011-09-29 | 1 | -2/+1 |
* | Only print _Bool as 'bool' when 'bool' is defined as an object-like | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
* | When 'bool' is not a built-in type but is defined as a macro, print | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
* | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -1/+1 |
* | Add a new warning to -Wliteral-conversion to catch cases where a string literal | Richard Trieu | 2011-09-23 | 1 | -5/+21 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -1/+1 |
* | Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. | Argyrios Kyrtzidis | 2011-09-19 | 1 | -1/+1 |
* | Let -Warray-bounds handle casted array types without false positives. | Nico Weber | 2011-09-17 | 1 | -1/+1 |
* | Finish the lex->LHS and rex->RHS cleanup in Sema. | Richard Trieu | 2011-09-15 | 1 | -22/+19 |
* | Refactoring, mostly to give ObjCPropertyDecls stronger invariants for | John McCall | 2011-09-13 | 1 | -4/+1 |
* | Rename the ARC cast kinds to start with "ARC". | John McCall | 2011-09-10 | 1 | -3/+3 |
* | Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can | Julien Lerouge | 2011-09-09 | 1 | -1/+17 |
* | When type-checking a call to an overloaded, builtin atomic operation, | Douglas Gregor | 2011-09-09 | 1 | -4/+11 |
* | The integer type of an enumeration type isn't always canonical | Douglas Gregor | 2011-09-08 | 1 | -1/+1 |
* | Extend -Wliteral-conversion to catch "int i = -1.234" | Matt Beaumont-Gay | 2011-09-08 | 1 | -0/+5 |
* | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor | 2011-09-02 | 1 | -1/+1 |
* | The lvalue-to-rvalue on structs in C++ is actually part | John McCall | 2011-08-27 | 1 | -0/+29 |