1. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  2. e4a1c64 Warn on memset(ptr, 0, sizeof(ptr)). Diagnostic wording by Jordy Rose. by Nico Weber · 13 years ago
  3. b792b30 fix rdar://9546171 - -Wshorten-64-to-32 shouldn't warn on vector bitcasts. by Chris Lattner · 13 years ago
  4. 5fc99f3 Fix a broken index left over from before this function was converted to by Chandler Carruth · 13 years ago
  5. 929f013 Clean up the "non-POD memaccess" stuff some. This adds a properly named by Chandler Carruth · 13 years ago
  6. 1838ca5 Add a new warning on NULL pointer constant to integer conversion. by Richard Trieu · 13 years ago
  7. 5e9ebb3 A few more is(Un)signedIntegerType/is(Un)signedOrEnumerationType cleanups. by Douglas Gregor · 13 years ago
  8. 06bc9eb Extend -Wnon-pod-memset to also encompass memcpy() and memmove(), by Douglas Gregor · 13 years ago
  9. 2a053a3 Separate the -Wnon-pod-memset warnings into two separate warnings: by Douglas Gregor · 13 years ago
  10. e452c78 Only check the use of memset() if we're refering to a C function named by Douglas Gregor · 13 years ago
  11. 43fa33b Relax the non-POD memset warning to use the less restrictive C++11 by Chandler Carruth · 13 years ago
  12. 1d59f7f Convert assertion in memset checking to a runtime check (because real code may provide a deviant definition of memset). by Ted Kremenek · 13 years ago
  13. 134cb44 Heh, funny thing, 'void' isn't a POD type. Nice of us to suggest it to by Chandler Carruth · 13 years ago
  14. 7ccc95b Add a warning (-Wnon-pod-memset) for calls to memset() with by Chandler Carruth · 13 years ago
  15. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago
  16. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 14 years ago
  17. f111d93 C1X: implement generic selections by Peter Collingbourne · 14 years ago
  18. f65076e Enhance the diagnostic for literal float -> int conversions to suggest by Chandler Carruth · 14 years ago
  19. 23aa9c8 add a __sync_swap builtin to fill out the rest of the __sync builtins. by Chris Lattner · 14 years ago
  20. 429bb27 Use ExprResult& instead of Expr *& in Sema by John Wiegley · 14 years ago
  21. e1b02e0 Refactor one helper function to merely forward to another so that there by Chandler Carruth · 14 years ago
  22. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 14 years ago
  23. db9e9e6 Remove warning for null characters in CFString literals. Clang handles them just fine, and GCC 4.2 doesn't warn here either. by Ted Kremenek · 14 years ago
  24. 0c06944 Don't warn about null characters in Objective-C format string literals. by Ted Kremenek · 14 years ago
  25. 5a5b38f When we're determining whether to complain about a conversion from one by Douglas Gregor · 14 years ago
  26. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 14 years ago
  27. ef9ff88 Profiling showed that 'CheckImplicitConversions' was very slow because of the call to getSpellingLoc(). On 'aes.c' by Ted Kremenek · 14 years ago
  28. 3aea4da For C++, enhance -Warray-bounds to recursively analyze array subscript accesses in ?: expressions. by Ted Kremenek · 14 years ago
  29. 8e10f3b Provide a bit saying that a builtin undergoes custom type-checking, then by John McCall · 14 years ago
  30. b43e8ad Don't warn about using PredefinedExprs as format string literals. These never can be a real security issue. by Ted Kremenek · 14 years ago
  31. 9e060ca Fix bogus -Warray-bounds warning involving 'array[true]' reported in PR 9296. by Ted Kremenek · 14 years ago
  32. 762696f Update Sema::DiagRuntimeBehavior() to take an optional Stmt* to indicate the code the diagnostic is associated with. by Ted Kremenek · 14 years ago
  33. b70369c Change -Warray-bounds logic to use DiagRuntimeBehavior in preparation for using basic dataflow to suppress warnings on unreachable array bounds checks. by Ted Kremenek · 14 years ago
  34. 284cc8d Warn about implicit conversions between values of different, named by Douglas Gregor · 14 years ago
  35. 3e026e3 Don't produce "comparison is always (true|false)" warnings when the by Douglas Gregor · 14 years ago
  36. 25b3b84 Fix assertion failure on -Warray-bounds for 32-bit builds of Clang. by Ted Kremenek · 14 years ago
  37. 35001ca Enhance the array bounds checking to work for several other constructs, by Chandler Carruth · 14 years ago
  38. 3406458 Clean up the style of this function to match the conventions in the rest by Chandler Carruth · 14 years ago
  39. a5b9332 Implement a sub-group of -Wconversion: -Wliteral-conversion. This by Chandler Carruth · 14 years ago
  40. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 14 years ago
  41. c71a2c0 Fix assertion failure in -Warray-bounds on template parameters used as arrays. by Ted Kremenek · 14 years ago
  42. 8fd0a5d Tweak -Warray-bounds diagnostics based on feedback from Chandler. by Ted Kremenek · 14 years ago
  43. a0125d8 Add trivial buffer overflow checking in Sema. by Ted Kremenek · 14 years ago
  44. 7502c1d Give some convenient idiomatic accessors to Stmt::child_range and by John McCall · 14 years ago
  45. 46ff303 Before checking bitfield initialization, make sure that neither the by Douglas Gregor · 14 years ago
  46. 469a1eb An insomniac stab at making block declarations list the variables they close by John McCall · 14 years ago
  47. 65197b4 Add semantic checking that the "thousands grouping" by Ted Kremenek · 14 years ago
  48. 14af91a Don't try to compute the value of a value-dependent expression when by Douglas Gregor · 14 years ago
  49. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 14 years ago
  50. 42499f9 Do not assert on shifts of Neon polynomial types. by Bob Wilson · 14 years ago
  51. 9f71a8f PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and by Jay Foad · 14 years ago
  52. f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 14 years ago
  53. 26e10be Follow through references to catch returned stack addresses, local blocks, label addresses or references to temporaries, e.g: by Argyrios Kyrtzidis · 14 years ago
  54. d976ca4 Revert r120331 since it causes spurious warnings and a possible assertion hit when self-host. by Argyrios Kyrtzidis · 14 years ago
  55. 8b2f01b Emit warnings if we are returning a reference to a local temporary. by Argyrios Kyrtzidis · 14 years ago
  56. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  57. 08f92e3 a metric ton of refactoring later, Sema::getLocationOfStringLiteralByte by Chris Lattner · 14 years ago
  58. 0833dd0 propagate preprocessor out of StringLiteralParser. It is now by Chris Lattner · 14 years ago
  59. 6c66f07 push use of Preprocessor out farther. by Chris Lattner · 14 years ago
  60. ca1475e push use of Preprocessor out of getOffsetOfStringByte by Chris Lattner · 14 years ago
  61. 91f54ce refactor the interface to StringLiteralParser::getOffsetOfStringByte, by Chris Lattner · 14 years ago
  62. 9263a30 Fix PR8625 and correctly interpret member-calls to static members when by Chandler Carruth · 14 years ago
  63. e2b7688 Kill CK_Unknown and flesh out the documentation for the existing CastKinds. by John McCall · 14 years ago
  64. daa8e4e Assorted work leading towards the elimination of CK_Unknown. by John McCall · 14 years ago
  65. 91b6014 Undo a refactor-o and base the bitfield-truncation warning on the by John McCall · 14 years ago
  66. 15d7d12 Extend the bitfield-truncation warning to initializations. by John McCall · 14 years ago
  67. 1844a6e When -Wconversion computes the range of a type, it uses the (bit-)range by John McCall · 14 years ago
  68. e86d78c Add a variant of GCC-style vector types for ARM NEON. by Bob Wilson · 14 years ago
  69. 935cd6e Tweak to bitfield-overflow warning: don't warn about storing by John McCall · 14 years ago
  70. beb22aa Add a warning for implicit truncation of constant values due to by John McCall · 14 years ago
  71. 091f23f Split out -Wconversion warnings about constant precision into their by John McCall · 14 years ago
  72. 82aa713 Require that the types of the parameters of a block literal are complete. by Douglas Gregor · 14 years ago
  73. 9ee5ee8 When checking whether a return statement returns a stack-local by Douglas Gregor · 14 years ago
  74. 4d8ae4d Previously, the printf warnings would say your arguments type was 'int' when it was really a 'char' by Ted Kremenek · 14 years ago
  75. 75c29a0 fix PR7885, rejecting invalid uses of __builtin_constant_p. by Chris Lattner · 14 years ago
  76. b4eb64d Track the location of the context requiring an implicit conversion and use it by John McCall · 14 years ago
  77. 63b57ae Fix an infinite loop, caused by unintended syntax bug (the 'break;' after 'default:' was intended to break out of the while loop). by Argyrios Kyrtzidis · 14 years ago
  78. 372e103 Provide a slightly specialized diagnostic for tautological comparisons by John McCall · 14 years ago
  79. 57a4087 kill off CheckX86BuiltinFunctionCall by Chris Lattner · 14 years ago
  80. b803c66 move imperative code to declarative definitions. by Chris Lattner · 14 years ago
  81. 946928f diagnose errors when a builtin that require constant arguments don't have them. by Chris Lattner · 14 years ago
  82. e3b159c When warning about comparing an unsigned int to being >= 0, don't issue a warning if the zero value was an by Ted Kremenek · 14 years ago
  83. dd5fa7a fix rdar://8445858 - __sync_* intrinsics erroneously reject ObjC pointers by Chris Lattner · 14 years ago
  84. c82faca Check format strings when a called function has more than one FormatAttr (one for 'scanf' and one for 'printf'). Fixes <rdar://problem/8409437>. by Ted Kremenek · 14 years ago
  85. 95355bb It appears that technically a null format string is not warned under -Wformat-nonliteral, as by Ted Kremenek · 14 years ago
  86. 4fe6441 Avoid redundant recursive calls in SemaCheckStringLiteral by just updating the expression by Ted Kremenek · 14 years ago
  87. 7da7102 Have Sema check for validity of CGString literal by Fariborz Jahanian · 14 years ago
  88. a423e81 Enhance return-stack-address check (in Sema) to handle fields that themselves are references. (Fixes PR 7999; fix by Chandler Carruth). by Ted Kremenek · 14 years ago
  89. 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
  90. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  91. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  92. 781472f Split FunctionScopeInfo and BlockScopeInfo into their own header. by John McCall · 14 years ago
  93. 384aff8 Remove Sema.h's dependency on DeclCXX.h. by John McCall · 14 years ago
  94. 9325eaf Fix printf format string checking for '%lc' (which expects a wint_t or compatible argument). Fixes PR 7981. by Ted Kremenek · 14 years ago
  95. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  96. cf807c4 Generate Attr subclasses with TableGen. by Sean Hunt · 14 years ago
  97. 2f4eaef Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() by Benjamin Kramer · 14 years ago
  98. ba6f816 Remove dead code, caught by unused function warnings. by Argyrios Kyrtzidis · 14 years ago
  99. de7e662 Zap unused UnaryOperator::OffsetOf. by Eli Friedman · 14 years ago
  100. b7f4ffe Implement -Wcast-align. The initial design of this diagnostic diverges by John McCall · 14 years ago