1. 9fcbcee Enhance -Wuninitialized to better reason about || and &&, tracking dual dataflow facts and properly merging them. by Ted Kremenek · 14 years ago
  2. d880f52 Implement access checking for the "delete" operator. Fixes PR9050, by Douglas Gregor · 14 years ago
  3. f9997a0 Fix a thinko where I didn't update a consistency check for by Douglas Gregor · 14 years ago
  4. 6f75550 Basic support for -mms-bitfields, from Carl Norum! by Douglas Gregor · 14 years ago
  5. 38ca4f7 Make that test case actually test something, and add another test. by John McCall · 14 years ago
  6. cde5a40 The code trying to assign a typedef to an anonymous tag declaration was by John McCall · 14 years ago
  7. 071d3af Revert 124633. The linker has been told how to merge available_externally. by Rafael Espindola · 14 years ago
  8. 65e7a9e When initializing struct members, the important thing is that the "initializing" expression is by Argyrios Kyrtzidis · 14 years ago
  9. 517ebc6 Set visibility for available_externally globals. This is important for two reasons: by Rafael Espindola · 14 years ago
  10. 86c05f3 Perform the bad-address-space conversions check as part of by John McCall · 14 years ago
  11. 293a45e Improve the diagnostic for -Wcustom-atomic-properties. Suggestion by Fariborz! by Argyrios Kyrtzidis · 14 years ago
  12. 94659e4 Add -Wcustom-atomic-properties which warns if an atomic-by-default property has custom getter or setter. by Argyrios Kyrtzidis · 14 years ago
  13. 395cc37 Implement reasonable conversion ranking for Objective-C pointer by Douglas Gregor · 14 years ago
  14. 9641fc8 Only warn for -Wnon-virtual-dtor for public destructors. Thanks to Benjamin Kramer for the hint! by Argyrios Kyrtzidis · 14 years ago
  15. 683a81f Implement the suggested resolution to core issue 547, extended to also by Douglas Gregor · 14 years ago
  16. def4e2a Warn if the class has virtual methods but non-virtual destructor. Addresses rdar://8756445. by Argyrios Kyrtzidis · 14 years ago
  17. 36eb5e4 Don't warn that variables in C++ static member functions shadow fields. Fixes rdar://8900456. by Argyrios Kyrtzidis · 14 years ago
  18. 49a6172 Fix the diagnostic when we are shadowing an external variable and there exists a locally scoped extern with the same name. by Argyrios Kyrtzidis · 14 years ago
  19. 6684d85 Diagnose if extern local variable is followed by non-extern and vice-versa. by Argyrios Kyrtzidis · 14 years ago
  20. 6df96e0 'extern' variables in functions don't shadow externs in global scope. Fixes rdar://8883302. by Argyrios Kyrtzidis · 14 years ago
  21. 43f0a7c If there were errors, disable 'unused' warnings since they will mostly be noise. by Argyrios Kyrtzidis · 14 years ago
  22. 6ad5df1 Error for use of field from anonymous struct or union should say "invalid use of nonstatic data member" by Argyrios Kyrtzidis · 14 years ago
  23. 0413db4 Amazing that there are still issues with the fields of anonymous struct/unions.. by Argyrios Kyrtzidis · 14 years ago
  24. d4d3ce6 Fix test that didn't actually test what it wanted to test. by Argyrios Kyrtzidis · 14 years ago
  25. dfaa5fb Allow Microsoft attributes in a constructor's parameter list. by Francois Pichet · 14 years ago
  26. 6d7f847 When building with optimizations, emit vtables where the key is not in the by Anders Carlsson · 14 years ago
  27. 80f0ab7 Add hardcoded -L/usr/lib after all -L options to the FreeBSD linker invocation. by Roman Divacky · 14 years ago
  28. 806f9a3 Fix test. by Anders Carlsson · 14 years ago
  29. 907c828 When emitting RTTI for a non-class type, compute the visibility of the RTTI data based on the explicit visibility of the type. by Anders Carlsson · 14 years ago
  30. 6329e20 Update tests. by Anders Carlsson · 14 years ago
  31. 3361cff Add a test for RTTI visibility. by Anders Carlsson · 14 years ago
  32. 691222d Give VTTs the right visibility. by Anders Carlsson · 14 years ago
  33. 1cbce12 Make emitting a VTT a two-step process, much like emitting a VTable. You first get the address of the VTT, and then pass it to EmitVTTDefinition. by Anders Carlsson · 14 years ago
  34. 268ab8c When trying to get the most derived class, don't assume that we can ignore all casts. We can only ignore derived-to-base and no-op casts. Fixes selfhost. by Anders Carlsson · 14 years ago
  35. 1679f5a When calling a virtual member function on a base class and the most derived class is marked 'final', we can devirtualize the call. by Anders Carlsson · 14 years ago
  36. 336a7dc When doing a derived-to-base class through a virtual class, we don't have to get the vbase offset from the vtable if the derived class is marked final. by Anders Carlsson · 14 years ago
  37. a50e33e More work to support -fapple-kext regarding by Fariborz Jahanian · 14 years ago
  38. d89d30f Fix some corner cases in the __is_base_of logic. by John McCall · 14 years ago
  39. 76a6d50 Make the FreeBSD driver test more robust so it doesn't fail when there's a single lib32 path. by Benjamin Kramer · 14 years ago
  40. 3ad32c8 Convert the exception-freeing cleanup over to the conditional cleanups code, by John McCall · 14 years ago
  41. 4867347 PR9037: Allow override, final, and new as an extension on inline members. by Nico Weber · 14 years ago
  42. a8af408 Not really any point to testing control flow in this test without by John McCall · 14 years ago
  43. e55e643 Update exceptions.m for r124462. by Eric Christopher · 14 years ago
  44. b608b98 Give OpaqueValueExpr a source location, because its source location by Douglas Gregor · 14 years ago
  45. 70a21de Allow elision of invocations of move constructors from temporary objects. by Douglas Gregor · 14 years ago
  46. b3d5e2f When producing IR for a lvalue-to-rvalue cast *as an lvalue*, only by Douglas Gregor · 14 years ago
  47. 1e8011e Fix an objective-c rewriter bug rewriting a __block by Fariborz Jahanian · 14 years ago
  48. 1eee5dc Teach the evaluation of the __is_convertible_to trait to translate by Douglas Gregor · 14 years ago
  49. 9f36113 Implement the Microsoft __is_convertible_to type trait, modeling the by Douglas Gregor · 14 years ago
  50. b7ee2e5 Revert r124217 because it didn't catch the actual error case it was trying to by Jeffrey Yasskin · 14 years ago
  51. 96554fd Teach -Wuninitialized about indirect goto. Fixes PR 9071. by Ted Kremenek · 14 years ago
  52. 11fe175 Wire up attributes 'ns_consumed' and 'cf_consumed' in the static analyzer's ObjC retain/release checker. by Ted Kremenek · 14 years ago
  53. 2a11469 Test for previous commit by Douglas Gregor · 14 years ago
  54. 2a5c45b Allow #pragma unused to be used on global variables like gcc. Fixes rdar://8793832. by Argyrios Kyrtzidis · 14 years ago
  55. e72fb6f Add libclang functions to determine the const/volatile/restrict by Douglas Gregor · 14 years ago
  56. 9319b56 [analyzer] Fix crash when handling dot syntax on 'super'. by Argyrios Kyrtzidis · 14 years ago
  57. 0433116 TextDiagnosticPrinter.cpp: Show diagnostics as far as possible even with invalid PresomedLoc, instead of just silencing it. by Axel Naumann · 14 years ago
  58. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  59. 12b9434 Hook up attribute ns_consumes_self in the ObjC retain/release checker in the static analyzer. by Ted Kremenek · 14 years ago
  60. 40900ee Teach -Wuninitialized not to assert when analyzing by Ted Kremenek · 14 years ago
  61. 1ea800c Teach -Wuninitialized about ObjC fast enumeration loops. by Ted Kremenek · 14 years ago
  62. fd1a8fd When we run into a template parameter that should have a default by Douglas Gregor · 14 years ago
  63. 944aa60 Cope with parenthesized function declarators when emitting a by Douglas Gregor · 14 years ago
  64. 14d0aee Fix a horrible bug in our handling of C-style casting, where a C-style by Douglas Gregor · 14 years ago
  65. 52a80e1 Fixes an IRgen bug where __block variable is by Fariborz Jahanian · 14 years ago
  66. 56209ff Add __has_feature(cxx_reference_qualified_functions); update tests and by Douglas Gregor · 14 years ago
  67. b145ee6 Implement the restriction that a function with a ref-qualifier cannot by Douglas Gregor · 14 years ago
  68. 8ec14e6 Handle C-style casts to rvalue reference types that cast away constness. by Douglas Gregor · 14 years ago
  69. 1f38106 Improve the extension warning for the use of ref-qualifiers, to by Douglas Gregor · 14 years ago
  70. b47f748 When mangling a qualified array type, push the qualifiers down to the by John McCall · 14 years ago
  71. fcab48b Rvalue references for *this: explicitly keep track of whether a by Douglas Gregor · 14 years ago
  72. 2c9a03f Rvalue references for *this: implement the implicit conversion rules by Douglas Gregor · 14 years ago
  73. 4bbcbda Fix some obvious bugs in the conditional-cleanup code and then make the by John McCall · 14 years ago
  74. 57c9f4f Rvalue references for *this: allow functions to be overloaded based on by Douglas Gregor · 14 years ago
  75. 0a9a6d6 Rvalue references for *this: add name mangling for ref-qualifiers, by Douglas Gregor · 14 years ago
  76. e3c7a7c Rvalue references for *this: tentative parsing and template argument deduction. by Douglas Gregor · 14 years ago
  77. 6b4df91 Reference qualifiers for *this: implement C++0x [expr.mptr.oper]p6, by Douglas Gregor · 14 years ago
  78. c78e259 Clean up the C++0x __has_feature tests. Specifically: by Douglas Gregor · 14 years ago
  79. 440a483 Reinstate r124236 (tweaking the rvalue-reference overload resolution by Douglas Gregor · 14 years ago
  80. c938c16 Rvalue references for *this: by Douglas Gregor · 14 years ago
  81. 5811f59 Teach -Wreturn-type that destructors can appear by Ted Kremenek · 14 years ago
  82. fd6b874 Merge -Wuninitialized-experimental into -Wuninitialized. by Ted Kremenek · 14 years ago
  83. dd0f794 Tweak -Wuninitialized-experimental to not emit by Ted Kremenek · 14 years ago
  84. 150b462 Better framework for conditional cleanups; untested as yet. by John McCall · 14 years ago
  85. 83f5172 Rvalue references for *this: parse ref-qualifiers. by Douglas Gregor · 14 years ago
  86. bd5a94e [analyzer] Enable the self-init checker under command-line option '-analyzer-check-objc-self-init' which by default by Argyrios Kyrtzidis · 14 years ago
  87. a4356ad Correct r124242 making sure function chunk that gets diagnosed is really about the block. by Argyrios Kyrtzidis · 14 years ago
  88. 4717f16 [analyzer] Improve the diagnostic for the self-init checker. Suggestion by Ted! by Argyrios Kyrtzidis · 14 years ago
  89. d0fbadd Tweak the rule for deciding if a provisional ivar is needed by Fariborz Jahanian · 14 years ago
  90. eaf969b [analyzer] Do the self-init check only on NSObject subclasses. Patch by Jean-Daniel Dupas! by Argyrios Kyrtzidis · 14 years ago
  91. 4d4feea Speculatively revert r124236 by Douglas Gregor · 14 years ago
  92. ce95566 Diagnose calling convention attribute incompatibilities. Fixes rdar://8876096. by Argyrios Kyrtzidis · 14 years ago
  93. df8dc5d Fix infinite loop during error diagnostics. Fixes rdar://8875304. by Argyrios Kyrtzidis · 14 years ago
  94. 9865044 Change error "function cannot return array type" -> "blocks cannot return array type" when blocks are involved. by Argyrios Kyrtzidis · 14 years ago
  95. 8b3b3db Tweak return-noreturn.cpp test to have its original by Ted Kremenek · 14 years ago
  96. f39e6a3 Fix regression in -Wreturn-type caused by not by Ted Kremenek · 14 years ago
  97. b7cd135 Speculatively implement a tweak to the C++0x overload resolution rules by Douglas Gregor · 14 years ago
  98. f6a19fb Don't try and symbolicate unions; we don't reason by Ted Kremenek · 14 years ago
  99. c60e13a Add an attribute to forbid temporary instances of a type. This allows class by Jeffrey Yasskin · 14 years ago
  100. 48a4ce7 Fix the ranking of reference bindings during overload resolution by Douglas Gregor · 14 years ago