Age | Commit message (Expand) | Author |
2011-10-29 | Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will | Richard Smith |
2011-10-28 | Fix for PR9751 to change the behavior of -Wformat warnings. If the format | Richard Trieu |
2011-10-25 | Restore r142914 and r142915, now with missing file and apparent | John McCall |
2011-10-25 | Revert r142914 and r142915, due to possibly missing file. | NAKAMURA Takumi |
2011-10-25 | Introduce a placeholder type for "pseudo object" | John McCall |
2011-10-22 | Only emit implicit constant conversion truncation warnings in reachable code.... | Ted Kremenek |
2011-10-19 | Move static array parameter checks to SemaExpr, per Doug's request | Peter Collingbourne |
2011-10-18 | Suggest %zu for size_t args to printf. | Hans Wennborg |
2011-10-16 | Add sema checks for calls to functions taking static array parameters | Peter Collingbourne |
2011-10-14 | Add template instantiation support for AtomicExpr. | Eli Friedman |
2011-10-14 | Only warn in -Wliteral-conversion if the conversion loses information | Matt Beaumont-Gay |
2011-10-13 | Extend -Wno-sizeof-array-argument to strncpy and friends. | Nico Weber |
2011-10-11 | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman |
2011-10-10 | Constant expression evaluation refactoring: | Richard Smith |
2011-10-10 | Don't analyze comparisons in type- or value-dependent | Douglas Gregor |
2011-10-07 | Rename TagDecl::isDefinition -> isCompleteDefinition | John McCall |
2011-10-05 | Refactor the analysis of C++ cast expressions so that even | John McCall |
2011-09-29 | Do not warn about empty format strings when there are no data arguments. Fix... | Ted Kremenek |
2011-09-29 | Unnecessary else | David Blaikie |
2011-09-27 | Only print _Bool as 'bool' when 'bool' is defined as an object-like | Douglas Gregor |
2011-09-27 | When 'bool' is not a built-in type but is defined as a macro, print | Douglas Gregor |
2011-09-25 | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie |
2011-09-23 | Add a new warning to -Wliteral-conversion to catch cases where a string literal | Richard Trieu |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-09-19 | Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. | Argyrios Kyrtzidis |
2011-09-17 | Let -Warray-bounds handle casted array types without false positives. | Nico Weber |
2011-09-15 | Finish the lex->LHS and rex->RHS cleanup in Sema. | Richard Trieu |
2011-09-13 | Refactoring, mostly to give ObjCPropertyDecls stronger invariants for | John McCall |
2011-09-10 | Rename the ARC cast kinds to start with "ARC". | John McCall |
2011-09-09 | Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can | Julien Lerouge |
2011-09-09 | When type-checking a call to an overloaded, builtin atomic operation, | Douglas Gregor |
2011-09-08 | The integer type of an enumeration type isn't always canonical | Douglas Gregor |
2011-09-08 | Extend -Wliteral-conversion to catch "int i = -1.234" | Matt Beaumont-Gay |
2011-09-02 | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor |
2011-08-27 | The lvalue-to-rvalue on structs in C++ is actually part | John McCall |
2011-08-19 | Improve the correctness and accuracy of the message for -Wdynamic-class-memac... | Matt Beaumont-Gay |
2011-08-18 | Enhance -Wstrl-incorrect-size to not report a FIXIT for destinations that are... | Ted Kremenek |
2011-08-18 | Reapply r137903, but fix the definition of size_t in the test case to use __S... | Ted Kremenek |
2011-08-18 | Revert r137903, "Add experimental -Wstrlcpy-size warning that looks to see if... | Ted Kremenek |
2011-08-17 | Add experimental -Wstrlcpy-size warning that looks to see if the size argumen... | Ted Kremenek |
2011-08-10 | Add a test case for the divide-by-zero fix in r137234 | Kaelyn Uhrain |
2011-08-10 | Make sure ptrarith_typesize is at least 1 to avoid division by zero | Kaelyn Uhrain |
2011-08-06 | Only look at decls after the current one when checking if it's the last field... | Benjamin Kramer |
2011-08-05 | Perform array bounds checking in more situations and properly handle special | Kaelyn Uhrain |
2011-08-05 | Flesh out the -Warray-bounds detection of C89 tail-padded one-element | Chandler Carruth |
2011-08-05 | Finally getting around to re-working this to more accurately white-list | Chandler Carruth |
2011-08-05 | Extend memset/memcpy/memmove checking to include memcmp | Matt Beaumont-Gay |
2011-08-02 | disable array bounds overflow warning for cases where an array | Chris Lattner |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-07-26 | Revert r136046 while fixing handling of e.g. &foo[index_one_past_size] | Kaelyn Uhrain |