Age | Commit message (Expand) | Author |
2011-02-24 | Don't warn about using PredefinedExprs as format string literals. These neve... | Ted Kremenek |
2011-02-23 | Fix bogus -Warray-bounds warning involving 'array[true]' reported in PR 9296. | Ted Kremenek |
2011-02-23 | Update Sema::DiagRuntimeBehavior() to take an optional Stmt* to indicate the ... | Ted Kremenek |
2011-02-23 | Change -Warray-bounds logic to use DiagRuntimeBehavior in preparation for usi... | Ted Kremenek |
2011-02-22 | Warn about implicit conversions between values of different, named | Douglas Gregor |
2011-02-19 | Don't produce "comparison is always (true|false)" warnings when the | Douglas Gregor |
2011-02-18 | Fix assertion failure on -Warray-bounds for 32-bit builds of Clang. | Ted Kremenek |
2011-02-17 | Enhance the array bounds checking to work for several other constructs, | Chandler Carruth |
2011-02-17 | Clean up the style of this function to match the conventions in the rest | Chandler Carruth |
2011-02-17 | Implement a sub-group of -Wconversion: -Wliteral-conversion. This | Chandler Carruth |
2011-02-17 | Change the representation of GNU ?: expressions to use a different expression | John McCall |
2011-02-16 | Fix assertion failure in -Warray-bounds on template parameters used as arrays. | Ted Kremenek |
2011-02-16 | Tweak -Warray-bounds diagnostics based on feedback from Chandler. | Ted Kremenek |
2011-02-16 | Add trivial buffer overflow checking in Sema. | Ted Kremenek |
2011-02-13 | Give some convenient idiomatic accessors to Stmt::child_range and | John McCall |
2011-02-04 | Before checking bitfield initialization, make sure that neither the | Douglas Gregor |
2011-02-02 | An insomniac stab at making block declarations list the variables they close | John McCall |
2011-01-08 | Add semantic checking that the "thousands grouping" | Ted Kremenek |
2010-12-21 | Don't try to compute the value of a value-dependent expression when | Douglas Gregor |
2010-12-15 | Fix diagnostic pragmas. | Argyrios Kyrtzidis |
2010-12-10 | Do not assert on shifts of Neon polynomial types. | Bob Wilson |
2010-12-07 | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad |
2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall |
2010-11-30 | Follow through references to catch returned stack addresses, local blocks, la... | Argyrios Kyrtzidis |
2010-11-29 | Revert r120331 since it causes spurious warnings and a possible assertion hit... | Argyrios Kyrtzidis |
2010-11-29 | Emit warnings if we are returning a reference to a local temporary. | Argyrios Kyrtzidis |
2010-11-18 | Calculate the value kind of an expression when it's created and | John McCall |
2010-11-17 | a metric ton of refactoring later, Sema::getLocationOfStringLiteralByte | Chris Lattner |
2010-11-17 | propagate preprocessor out of StringLiteralParser. It is now | Chris Lattner |
2010-11-17 | push use of Preprocessor out farther. | Chris Lattner |
2010-11-17 | push use of Preprocessor out of getOffsetOfStringByte | Chris Lattner |
2010-11-17 | refactor the interface to StringLiteralParser::getOffsetOfStringByte, | Chris Lattner |
2010-11-16 | Fix PR8625 and correctly interpret member-calls to static members when | Chandler Carruth |
2010-11-16 | Kill CK_Unknown and flesh out the documentation for the existing CastKinds. | John McCall |
2010-11-15 | Assorted work leading towards the elimination of CK_Unknown. | John McCall |
2010-11-11 | Undo a refactor-o and base the bitfield-truncation warning on the | John McCall |
2010-11-11 | Extend the bitfield-truncation warning to initializations. | John McCall |
2010-11-10 | When -Wconversion computes the range of a type, it uses the (bit-)range | John McCall |
2010-11-10 | Add a variant of GCC-style vector types for ARM NEON. | Bob Wilson |
2010-11-10 | Tweak to bitfield-overflow warning: don't warn about storing | John McCall |
2010-11-09 | Add a warning for implicit truncation of constant values due to | John McCall |
2010-11-09 | Split out -Wconversion warnings about constant precision into their | John McCall |
2010-11-01 | Require that the types of the parameters of a block literal are complete. | Douglas Gregor |
2010-10-21 | When checking whether a return statement returns a stack-local | Douglas Gregor |
2010-10-21 | Previously, the printf warnings would say your arguments type was 'int' when ... | Ted Kremenek |
2010-10-12 | fix PR7885, rejecting invalid uses of __builtin_constant_p. | Chris Lattner |
2010-10-08 | Track the location of the context requiring an implicit conversion and use it | John McCall |
2010-10-07 | Fix an infinite loop, caused by unintended syntax bug (the 'break;' after 'de... | Argyrios Kyrtzidis |
2010-10-06 | Provide a slightly specialized diagnostic for tautological comparisons | John McCall |
2010-10-01 | kill off CheckX86BuiltinFunctionCall | Chris Lattner |