1. 11b46a0 Allow internal decls in inline functions if the function is in the main file. by Jordan Rose · 12 years ago
  2. 174930d fix PR13071 / rdar://problem/11634669 : by Nuno Lopes · 12 years ago
  3. 96c67d1 alloc_size attribute: there's nothing wrong with alloc_size(1,1). It just means the function allocates x^2 bytes. GCC also accepts this syntax by Nuno Lopes · 12 years ago
  4. 93f95f2 Handle C++11 attribute namespaces automatically. by Sean Hunt · 12 years ago
  5. adc6cbf [MSExtensions] Add support for __forceinline. by Michael J. Spencer · 12 years ago
  6. 7e58ad5 Don't warn about address-to-member used as part of initialisation, if by Joerg Sonnenberger · 12 years ago
  7. de23c7e Documentation cleanup: fix two typos, rief -> brief and Descripts -> Describes by James Dennett · 12 years ago
  8. f198d12 Documentation cleanup: fixing a typo from my previous 'fix'. by James Dennett · 12 years ago
  9. c5613b2 Explicitly build __builtin_va_list. by Meador Inge · 12 years ago
  10. 860a319 Fix Sema and IRGen for atomic compound assignment so it has the right semantics when promotions are involved. by Eli Friedman · 12 years ago
  11. a0cff72 [AST/libclang] Fix the selector locations that are reported for a by Argyrios Kyrtzidis · 12 years ago
  12. 50dc12a Recover when correcting an unknown type name to a keyword like "struct". by Kaelyn Uhrain · 12 years ago
  13. 7bf3340 Move isCXXSimpleTypeSpecifier from Parser to Sema and tweak it for wider use. by Kaelyn Uhrain · 12 years ago
  14. ef2b5b3 Documentation cleanup: by James Dennett · 12 years ago
  15. c2f51cf Stop referring to functions as methods in per-function fallthrough-checking. by Sean Hunt · 12 years ago
  16. 1f6e22d [completion] Add completions for @"..." and @(...), and tidy up @[] and @{}. by Jordan Rose · 12 years ago
  17. 106af9e Warn when a static variable is referenced in a non-static inline function. by Jordan Rose · 12 years ago
  18. 03f1eb0 Check the parameter lists and return type of both blocks and lambdas by Douglas Gregor · 12 years ago
  19. 699c904 Documentation cleanup: by James Dennett · 12 years ago
  20. e099125 Fix T* p to T *p by Richard Trieu · 12 years ago
  21. de5e75c Use a proper visitor to recursively check for uninitialized use in constructors. by Richard Trieu · 12 years ago
  22. 1dfbd92 Still more Doxygen documentation fixes: by James Dennett · 12 years ago
  23. 0e9e9f8 Look at incomplete FunctionTemplateDecls in order to determine whether by Daniel Jasper · 12 years ago
  24. a40f792 This makes SemaCodeComplete.cpp more Doxygen-friendly by changing the by James Dennett · 12 years ago
  25. 568eae4 Allow __attribute__((unused)) for fields and make it silence by Daniel Jasper · 12 years ago
  26. df9ef1b PR13099: Teach -Wformat about raw string literals, UTF-8 strings and Unicode escape sequences. by Richard Smith · 12 years ago
  27. cd65f49 Add missing narrowing check: converting from a signed integral type to a wider by Richard Smith · 12 years ago
  28. b92a408 When code completion walks the members of a protocol or interface, by Douglas Gregor · 12 years ago
  29. 54655be If parsing a trailing-return-type fails, don't pretend we didn't have one at by Richard Smith · 12 years ago
  30. 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
  31. 3c2fcf8 PR12964: __int128 and unsigned __int128 are promoted integral types, be sure to by Richard Smith · 12 years ago
  32. d3861ce Remove CXXRecordDecl flags which are unused after r158289. by Richard Smith · 12 years ago
  33. 7756afa Fix PR13052 properly, by performing special member lookup to determine whether by Richard Smith · 12 years ago
  34. ca52330 PR13064: Store whether an in-class initializer uses direct or copy by Richard Smith · 12 years ago
  35. 49fdccb Convert comments to proper Doxygen comments. by Dmitri Gribenko · 12 years ago
  36. 0abbdfe Warn in ObjC++ when an 'auto' variable deduces type 'id'. by Jordan Rose · 12 years ago
  37. 0f4b5be PR13051: Only suggest the 'template' and 'operator' keywords when performing by Richard Smith · 12 years ago
  38. 9f63a45 Disallow using ObjC literals in direct comparisons (== and friends). by Jordan Rose · 12 years ago
  39. a248e9c Remove a commented out variable declaration. This was originally a debugging by Richard Trieu · 12 years ago
  40. 390fff8 [libclang/AST] by Argyrios Kyrtzidis · 12 years ago
  41. f4fe843 Allow friend declarations of defaulted special member functions. Only by Richard Smith · 12 years ago
  42. 8c14de8 Fix up the 'typename' suggestion logic introduced in r157085, based on by Kaelyn Uhrain · 12 years ago
  43. b7fe579 Teach the FixIt in DiagnoseInvalidRedeclaration how to replace the written by Kaelyn Uhrain · 12 years ago
  44. ef094a1 Ignore corrections to functions with bodies when deciding which by Kaelyn Uhrain · 12 years ago
  45. 8552437 Plug a long standing memory leak in TemplateArgument. by Benjamin Kramer · 12 years ago
  46. 826eac5 Attach fixits for CFBridgingRetain/Release outside any casts. by Jordan Rose · 12 years ago
  47. d880b3a Insert a space if necessary when suggesting CFBridgingRetain/Release. by Jordan Rose · 12 years ago
  48. 8d3607b Allow CorrectTypo to add/modify nested name qualifiers to typos that by Kaelyn Uhrain · 12 years ago
  49. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  50. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  51. f8cc02e Introduce -Wunused-private-field. If enabled, this warning detects by Daniel Jasper · 12 years ago
  52. 1ea6744 objective-c: merge deprecated/unavailable attributes to by Fariborz Jahanian · 12 years ago
  53. 5068731 Teach format string checking about compile-time CFString constants. by Jordan Rose · 12 years ago
  54. ee0259d Teach printf/scanf about enums with fixed underlying types. by Jordan Rose · 12 years ago
  55. 36d02af Add a warning for when an array-to-pointer decay is performed on an array by Richard Smith · 12 years ago
  56. 3117039 objective-c: Handle more warning cases for when by Fariborz Jahanian · 12 years ago
  57. 44f5b1d Removing the lambda extension warning concerning single return statements, as it no longer applies. by Aaron Ballman · 12 years ago
  58. b1c6f5f When adding built-in operator candidates for overload resolution by Douglas Gregor · 12 years ago
  59. 40e2999 Improve fixit for comparison operator on lhs of bitwise operator. by Nico Weber · 12 years ago
  60. 48d798c Fix typos found by http://github.com/lyda/misspell-check by Benjamin Kramer · 12 years ago
  61. 1973634 Implementation of a "soft opt-in" option for -Wimplicit-fallthrough diagnostics: -Wimplicit-fallthrough-per-method by Alexander Kornienko · 12 years ago
  62. 784ae8e Don't allow multiple correction candidates that have the same identifier by Kaelyn Uhrain · 12 years ago
  63. 684190b [arcmt] Use CFBridgingRetain/CFBridgingRelease instead of __bridge_retained/__bridge_transfer by Argyrios Kyrtzidis · 12 years ago
  64. 1dfc4ba Anonymous union members within a struct are now properly handled as an unevaluated field in C++11 mode. This fixes PR12866. by Aaron Ballman · 12 years ago
  65. 396e0a8 In TypoCorrectionConsumer, BestResults to CorrectionResults to lessen by Kaelyn Uhrain · 12 years ago
  66. 3427682 objc: properties of NSObject attribute must by Fariborz Jahanian · 12 years ago
  67. 90c7832 Change wording of 'memcpy' type mismatch warning and remove fixit. by Anna Zaks · 12 years ago
  68. abe21e3 Disable -Wunique-enum for anonymous enums. by David Blaikie · 12 years ago
  69. 59a9881 objective-c: revert r157407. It broke a project by Fariborz Jahanian · 12 years ago
  70. a27cb25 Remove some extra braces. by Eric Christopher · 12 years ago
  71. 7af7de7 Add new -Wunique-enum which will warn on enums which all elements have the by Richard Trieu · 12 years ago
  72. 6fcb372 Add fixits for memory access warnings. by Anna Zaks · 12 years ago
  73. 490a52b objective-c: fix a sema and IRGen crash when property by Fariborz Jahanian · 12 years ago
  74. 4872e10 Fix PR12960 by not attempting to correct cases when we're not actually instantiatiating a template. by David Blaikie · 12 years ago
  75. 350e956 -Wdeprecated warning to include reference (as a note) by Fariborz Jahanian · 12 years ago
  76. 811bfcd Use the SelectorSet typedef more widely throughout Sema. by Benjamin Kramer · 12 years ago
  77. cba0ebc Change warning to error when property setter names conflict. // rdar://11528439 by Fariborz Jahanian · 12 years ago
  78. bdb97ff In response to some discussions on IRC, tweak the wording of the new by Richard Smith · 12 years ago
  79. 7f7c42b Fix indentation. by David Blaikie · 12 years ago
  80. a189d89 Don't offer '[[clang::fallthrough]];' fix-it when a fall-through occurs to a by Alexander Kornienko · 12 years ago
  81. 2815e1a Split a chunk of -Wconditional-uninitialized warnings out into a separate flag, by Richard Smith · 12 years ago
  82. 8189188 Some cleanups around the uninitialized variables warning, and a FIXME. No functional change. by Richard Smith · 12 years ago
  83. b5b155c objective-c: warn on use of property setters by Fariborz Jahanian · 12 years ago
  84. 0218068 Get rid of some non-ASCII en-dashes that crept in. by Eli Friedman · 12 years ago
  85. e26073c Implement the C++11 discarded value expression rules for volatile lvalues. <rdar://problem/10790820>. by Eli Friedman · 12 years ago
  86. d5f1bd2 objective-c: Fixes a corner case and interesting bug. by Fariborz Jahanian · 12 years ago
  87. 8ab10aa DR1152 / PR12931 / PR6177: A candidate function which requires binding a const by Richard Smith · 12 years ago
  88. a611506 Add a warning to diagnose statements in C++ like "*(volatile int*)x;". Conceptually, this is part of -Wunused-value, but I added a separate flag -Wunused-volatile-lvalue so it doesn't get turned off by accident with -Wno-unused-value. I also made a few minor improvements to existing unused value warnings in the process. <rdar://problem/11516811>. by Eli Friedman · 12 years ago
  89. 587de5b implement Sema support for the alloc_size attribute by Nuno Lopes · 12 years ago
  90. 703b601 Correct the starting location for instantiations of field declarations which by Richard Smith · 12 years ago
  91. c052dbb Recognize the MS inheritance attributes and turn them into attributes by John McCall · 12 years ago
  92. 5bf0e35 Remove unused argument in my last patch. by Fariborz Jahanian · 12 years ago
  93. edcc27f objective-c: When default synthesizing readonly IBOutlet properties by Fariborz Jahanian · 12 years ago
  94. e5f8372 Bitpack CodeCompletionResults. by Benjamin Kramer · 12 years ago
  95. 11d1a69 Error when using typeid() with -fno-rtti. PR 12888. by Nico Weber · 12 years ago
  96. d21016f Make delegating initializers use a similar codepath to base initializers in dependent contexts. PR12890. by Eli Friedman · 12 years ago
  97. 2b309fb objective-c: Warn if default synthesizing readonly IBOutlet properties by Fariborz Jahanian · 12 years ago
  98. c1aa40c Apparently empty names are allowed here. by Benjamin Kramer · 12 years ago
  99. c470442 Simplify some users of DeclarationName::getNameKind. Fold getFETokenInfoAsVoid into its only caller. by Benjamin Kramer · 12 years ago
  100. e2010ee Inline a trivial clear() method. by Benjamin Kramer · 12 years ago