1. 80bfa3d Fix an edge case of mangling involving the combination of a lambda and typeid. by Eli Friedman · 12 years ago
  2. d7a6b16 Fix the AST representation for non-type template arguments to encode by Eli Friedman · 12 years ago
  3. 317d8f3 Examine the last, not the first, instruction from the MC matcher. by Bob Wilson · 12 years ago
  4. ea30e2f Add the Microsoft __is_interface_class type trait. Patch by Andy Gibbs! by John McCall · 12 years ago
  5. e402e72 Fix for r163013 regression and further __interface enhancement. by John McCall · 12 years ago
  6. 9f357de During jump-scope checking, build an ExprWithCleanups immediately by John McCall · 12 years ago
  7. e49ff3e Fix crash when a decltype expression in a trailing return type refers to the by Richard Smith · 12 years ago
  8. 511e3ae Delete some code which is, as far as I can tell, dead. by Eli Friedman · 12 years ago
  9. 54b3ba8 Don't produce diagnostics for missing ctor-initializers during template by Richard Smith · 12 years ago
  10. 7935dde Update for r164567. by Chad Rosier · 12 years ago
  11. b0f6b9c Replace an assertion with an error for empty __asm statements. by Bob Wilson · 12 years ago
  12. 40d39e3 Fix a comment typo and clean up formatting. by Bob Wilson · 12 years ago
  13. e3b136b Change the wording of the extension warning from by Dmitri Gribenko · 12 years ago
  14. fc97ea2 Small cleanup of literal semantic analysis: hiding 'char *' pointers behind by Dmitri Gribenko · 12 years ago
  15. 2ad11cd Avoid multiple atomic builtin declaration. by Abramo Bagnara · 12 years ago
  16. 3d44219 [ms-inline asm] Use mnemonicIsValid() in a helpful assert. by Chad Rosier · 12 years ago
  17. fd09088 objective-C: when diagnosing deprecated/unavailable usage of by Fariborz Jahanian · 12 years ago
  18. 7821e07 Make warnings about uninitialized fields include the field name. by Hans Wennborg · 12 years ago
  19. 1a6eac8 Doxygen-ify a comment. by Craig Topper · 12 years ago
  20. b6b5b97 PR13890: Warn on abstract final classes. by David Blaikie · 12 years ago
  21. 8b533d9 If the range in a for range statement doesn't have a viable begin/end function, by Richard Smith · 12 years ago
  22. a193f20 Improvements to my patch in r164143 per Richard's comments. // rdar://12202422 by Fariborz Jahanian · 12 years ago
  23. a405b25 Include types when a definition's type differs from a prior declaration. by David Blaikie · 12 years ago
  24. 7c3c6bc Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854. by Eli Friedman · 12 years ago
  25. d6f80da Per C++11 [class.friend]p3, the 'friend' keyword must appear first in a by Richard Smith · 12 years ago
  26. 407c847 Fix a small FIXME involving template partial ordering and by Eli Friedman · 12 years ago
  27. 9cef006 Fix function template partial ordering rules for static vs. non-static by Eli Friedman · 12 years ago
  28. 5b280f2 Thread-safety analysis: fix ICE when EXCLUSIVE_LOCKS_REQUIRED or by DeLesley Hutchins · 12 years ago
  29. 93e4599 Remove Context argument from TemplateDeductionInfo constructor. It was no longer needed after the unused Context member was removed in r164104. by Craig Topper · 12 years ago
  30. 8da8a66 Add the TypeSourceInfo for the lambda call operator to the lambda's by Eli Friedman · 12 years ago
  31. 97c6739 Fix a small bug in the way we handle builtin candidates for by Eli Friedman · 12 years ago
  32. 9cd5b24 Add an extra check for invalid decls in the lambda semantic analysis to avoid a crash. PR13860. by Eli Friedman · 12 years ago
  33. ab4702f minor refactoring of my last check-in. by Fariborz Jahanian · 12 years ago
  34. 15a9356 c: warn when an integer value comparison with an by Fariborz Jahanian · 12 years ago
  35. 471f985 Warn about self references in in-class initializers. by Hans Wennborg · 12 years ago
  36. 43f8c40 Per discussion on cfe-dev, remove -Wunique-enums entirely. There by Ted Kremenek · 12 years ago
  37. f224fb5 objective-C: don't warn about class extension property's by Fariborz Jahanian · 12 years ago
  38. 6defd9f objective-C: peroform property attribute consistency by Fariborz Jahanian · 12 years ago
  39. 1fac58a -Warc-retain-cycles: look through [^{...} copy] and Block_copy(^{...}) by Jordan Rose · 12 years ago
  40. 8f411c3 Don't write uninitialized values even if nobody ever asks for it. by Axel Naumann · 12 years ago
  41. bc57b10 const _Atomic(T) is not an atomic type, so do not allow it as the type 'A' in by Richard Smith · 12 years ago
  42. e10f4d3 -Warc-retain-cycles: warn at variable initialization as well as assignment. by Jordan Rose · 12 years ago
  43. b3cd3c0 Fix some dead stores which the static analyzer warned about. No functionality by Richard Smith · 12 years ago
  44. a6ddea6 When diagnosing multiple mem-initializers in a delegating ctor, point to the delegating initializer, not to the first initializer. For good measure, also highlight the other initializer. by Richard Smith · 12 years ago
  45. 6f5a2ec objective-C arc: remove -Warc-abi in its entirety. // rdar://10554025 by Fariborz Jahanian · 12 years ago
  46. 2c8e81e Fix warning on qualified typedef with 'unused' attribute, from Jason Haslam! by Douglas Gregor · 12 years ago
  47. 6db351a In debugger mode, allow comparisons between pointers and integers by Douglas Gregor · 12 years ago
  48. dd08427 As we do with base and member initializers in a dependent class, delay by Douglas Gregor · 12 years ago
  49. 84dd82e When computing the decltype of an expression, consider Objective-C by Douglas Gregor · 12 years ago
  50. bed51fe Actually rebuild function types properly when adjusting the function by Douglas Gregor · 12 years ago
  51. 2bcb984 Revert r163829. The world (or libstdc++, at least) is not ready. by Richard Smith · 12 years ago
  52. 71074fd When we substitute into the type of a function based on the by Douglas Gregor · 12 years ago
  53. e7ff919 Implement C++11 [conv.prom]p4: an enumeration with a fixed underlying type has by Richard Smith · 12 years ago
  54. ae19fbb Don't perform template argument deduction against invalid templates; by Douglas Gregor · 12 years ago
  55. 9fb6f79 remove duplicate code. by Fariborz Jahanian · 12 years ago
  56. 7537945 Promote the warning about extra qualification on a declaration from a by Douglas Gregor · 12 years ago
  57. ceb0762 Remove speculative fix for C++ core issue 1407, since it was resolved as NAD. by Richard Smith · 12 years ago
  58. a1a32f7 Move back the stuff about missing ownership attribute warning by Fariborz Jahanian · 12 years ago
  59. ca5c4c9 Move no explicit ownership warning to SemaType.cpp. // rdar://12280826 by Fariborz Jahanian · 12 years ago
  60. 127ff2e Conditionally parse documentation comments in system headers by by Ted Kremenek · 12 years ago
  61. 670941c Format strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o. by Jordan Rose · 12 years ago
  62. 275b6f5 Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o). by Jordan Rose · 12 years ago
  63. 3ef95a5 Add a few FIXMEs. by Chad Rosier · 12 years ago
  64. b55e602 [ms-inline asm] Handle the enumeration of input and output expressions in a by Chad Rosier · 12 years ago
  65. 0002479 objective-C arc: don't issue no explicit ownership warning when by Fariborz Jahanian · 12 years ago
  66. 7f9678b [ms-inline asm] If we have a single asm operand that maps to multiple by Chad Rosier · 12 years ago
  67. e23fb90 Fix a couple of Doxygen issues pointed out by -Wdocumentation. by Dmitri Gribenko · 12 years ago
  68. 9a4db03 PR13811: Add a FunctionParmPackExpr node to handle references to function by Richard Smith · 12 years ago
  69. 80da77e [ms-inline asm] isDef/NumDefs in this context only refer to register definitions, not memory definitions. by Chad Rosier · 12 years ago
  70. 8742d7c [ms-inline asm] As of r163657 this check is unnecessary. by Chad Rosier · 12 years ago
  71. fb70026 [ms-inline asm] Don't consider tokens or immediates when computing clobbers, inputs and outputs. by Chad Rosier · 12 years ago
  72. c9e418c Fix warning from r163642 by DeLesley Hutchins · 12 years ago
  73. 24a6c94 Thread safety analysis: fix bug related to lock_returned attribute on templates. by DeLesley Hutchins · 12 years ago
  74. 4de9716 [ms-inline asm] Add $$ before numeric constants in the IR. by Chad Rosier · 12 years ago
  75. 654f1d5 Fix PR13784: instantiation of an abstract class in a conditional operator. by David Blaikie · 12 years ago
  76. b22b0a5 Move the null check outside of the loop, no functionality change. by Argyrios Kyrtzidis · 12 years ago
  77. 1ad23d6 Remove redundant semicolons which are null statements. by Dmitri Gribenko · 12 years ago
  78. 3f0ec52 Thread-safety analysis: differentiate between two forms of analysis; a precise by DeLesley Hutchins · 12 years ago
  79. 6f93860 More tweaking and test cases for call to super annotations. // rdar://6386358 by Fariborz Jahanian · 12 years ago
  80. 9f55983 objective-C: Improving diagnostocs for missing call to by Fariborz Jahanian · 12 years ago
  81. 0cb8939 Allow vector types in pseudo-destructor expressions. Fixes PR13798. by Douglas Gregor · 12 years ago
  82. 8be066e Format strings: suggest %lld instead of %qd and %Ld with -Wformat-non-iso. by Jordan Rose · 12 years ago
  83. bbb6bb4 Format strings: %Ld isn't available on Darwin or Windows. by Jordan Rose · 12 years ago
  84. 8410113 objective-C: introduce __attribute((objc_requires_super)) on method by Fariborz Jahanian · 12 years ago
  85. 0b4db3e Thread-safety analysis: Add support for selectively turning off warnings by DeLesley Hutchins · 12 years ago
  86. 6964b3f PR9023: A template template parameter whose template parameter list contains an by Richard Smith · 12 years ago
  87. 8123b6e Clarified diagnostics for range-based for loops with invalid ranges by Sam Panzer · 12 years ago
  88. c691649 [ms-inline asm] Output empty asm statements for the directives we don't by Chad Rosier · 12 years ago
  89. acc22b6 [ms-inline asm] The IR representation of inline assembly enumerates the input by Chad Rosier · 12 years ago
  90. 3359fa3 refactoring + objective-C specific test for my last patch. // rdar://12233989 by Fariborz Jahanian · 12 years ago
  91. cddbc1d Don't try to check override control for invalid member functions. Fixes a crash in a corner case. Patch by Olivier Goffart! by Richard Smith · 12 years ago
  92. 2d40d9e c: make __attribute__((unused)) transitive. by Fariborz Jahanian · 12 years ago
  93. 1014ecf Remove unused typedefs. Found by gcc48. by Roman Divacky · 12 years ago
  94. 31ba613 Dont cast away const needlessly. Found by gcc48 -Wcast-qual. by Roman Divacky · 12 years ago
  95. 69e4826 PR13775: When checking for a tag type being shadowed by some other declaration, by Richard Smith · 12 years ago
  96. faadf48 Continue including temporary destructors in the CFG used for warnings. by Jordan Rose · 12 years ago
  97. ec08735 Format strings: suggest casts for NS(U)Integer and [SU]Int32 on Darwin. by Jordan Rose · 12 years ago
  98. 614a865 Format string checking: change long if-statement to early returns. by Jordan Rose · 12 years ago
  99. 37c765a c error recovery. treat an invalid redeclaration by Fariborz Jahanian · 12 years ago
  100. 536afbe Do not add using directives to a function decl context when instantiating. by Abramo Bagnara · 12 years ago