1. b4bc99b Add ext_vector type code for builtins, from John Garvin! by Douglas Gregor · 12 years ago
  2. 41c2bcf Fix many doxygen formatting errors. by Chandler Carruth · 12 years ago
  3. b8e54cd Reuse APInt's getNumWords, which gets rounding right (my ad-hoc solution missed it). by Benjamin Kramer · 12 years ago
  4. 8552437 Plug a long standing memory leak in TemplateArgument. by Benjamin Kramer · 12 years ago
  5. e17fdb2 [analyzer] Anti-aliasing: different heap allocations do not alias by Anna Zaks · 12 years ago
  6. d880b3a Insert a space if necessary when suggesting CFBridgingRetain/Release. by Jordan Rose · 12 years ago
  7. c86c40b Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope by Douglas Gregor · 12 years ago
  8. 36397dc [analyzer] Provide debug descriptions for all memory space regions. by Jordan Rose · 12 years ago
  9. b8c5e6b Fix Makefile: Options.td depends on CC1Options.td. by Jordan Rose · 12 years ago
  10. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  11. 8c0b378 Add a -rewrite-includes option, which is similar to -rewrite-macros, but only expands #include directives. by David Blaikie · 12 years ago
  12. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  13. d73ef13 Add pedantic warning -Wempty-translation-unit (C11 6.9p1). by Jordan Rose · 12 years ago
  14. f8cc02e Introduce -Wunused-private-field. If enabled, this warning detects by Daniel Jasper · 12 years ago
  15. c28a335 RecursiveASTVisitor: add ability to visit implicit declarations. Patch by by Richard Smith · 12 years ago
  16. 36d02af Add a warning for when an array-to-pointer decay is performed on an array by Richard Smith · 12 years ago
  17. cacf718 [objcmt] Don't migrate to subscripting syntax if the required methods have not by Argyrios Kyrtzidis · 12 years ago
  18. 30c009b Fixed a problem related to resolution of built-in headers in case a path of tool's binary contains sym-links. by Alexander Kornienko · 12 years ago
  19. 44f5b1d Removing the lambda extension warning concerning single return statements, as it no longer applies. by Aaron Ballman · 12 years ago
  20. 8373862 Require -pie when linking with ASan on Android. by Evgeniy Stepanov · 12 years ago
  21. 3af16fd Test the '__thread' before 'static' warning. by Hans Wennborg · 12 years ago
  22. 48d798c Fix typos found by http://github.com/lyda/misspell-check by Benjamin Kramer · 12 years ago
  23. 1973634 Implementation of a "soft opt-in" option for -Wimplicit-fallthrough diagnostics: -Wimplicit-fallthrough-per-method by Alexander Kornienko · 12 years ago
  24. c0e71a1 [analyzer] Rely on canBeInlined utility instead of checking CallExpr explicitly. by Anna Zaks · 12 years ago
  25. 7fa9b4f static analyzer: add inlining support for directly called blocks. by Ted Kremenek · 12 years ago
  26. 684190b [arcmt] Use CFBridgingRetain/CFBridgingRelease instead of __bridge_retained/__bridge_transfer by Argyrios Kyrtzidis · 12 years ago
  27. 14a1924 Fix an object lifetime issue in clang/Tooling. by Alexander Kornienko · 12 years ago
  28. ed7948b Allow some BugReports to opt-out of PathDiagnostic callstack pruning until we have significantly by Ted Kremenek · 12 years ago
  29. 3c0bc15 Add builtin for pclmulqdq instruction. by Craig Topper · 12 years ago
  30. 6fada8e Only visit default arguments for template declarations when visiting the template declaration which introduced them. Patch by Yang Chen! by Richard Smith · 12 years ago
  31. 90c7832 Change wording of 'memcpy' type mismatch warning and remove fixit. by Anna Zaks · 12 years ago
  32. abe21e3 Disable -Wunique-enum for anonymous enums. by David Blaikie · 12 years ago
  33. 5d51e88 Adds a toString method to Replacement, which helps debugging. by Manuel Klimek · 12 years ago
  34. 3783eff Mark extrqi and insertqi immediate arguments as being ICE. by Craig Topper · 12 years ago
  35. 7af7de7 Add new -Wunique-enum which will warn on enums which all elements have the by Richard Trieu · 12 years ago
  36. 6fcb372 Add fixits for memory access warnings. by Anna Zaks · 12 years ago
  37. 6b97877 Add an ammintrin.h header for SSE4a intrinsics. by Benjamin Kramer · 12 years ago
  38. 003ab66 Factor out the code retrieves the last PIC related argument from by Simon Atanasyan · 12 years ago
  39. 32dcb1b Revert r155737, restoring the MaxDepth in the BalancedDelimiterTracker to 256. by Chad Rosier · 12 years ago
  40. 009072f Fix suspicous isIntegerType() check, found by PVS Studio (PR12357). by Benjamin Kramer · 12 years ago
  41. dec1776 Address minor FIXME in RedeclLink to contain a PointerIntPair instead of derive from it. by David Blaikie · 12 years ago
  42. 1831bd2 Pass ProgramStateRef by reference. by Benjamin Kramer · 12 years ago
  43. 811bfcd Use the SelectorSet typedef more widely throughout Sema. by Benjamin Kramer · 12 years ago
  44. 28b2307 Replace some custom hash combines with the standard stuff from DenseMapInfo. by Benjamin Kramer · 12 years ago
  45. cba0ebc Change warning to error when property setter names conflict. // rdar://11528439 by Fariborz Jahanian · 12 years ago
  46. bdb97ff In response to some discussions on IRC, tweak the wording of the new by Richard Smith · 12 years ago
  47. 2815e1a Split a chunk of -Wconditional-uninitialized warnings out into a separate flag, by Richard Smith · 12 years ago
  48. b5b155c objective-c: warn on use of property setters by Fariborz Jahanian · 12 years ago
  49. 2c585b9 Replace PTX back-end with NVPTX back-end in all places where Clang cares by Justin Holewinski · 12 years ago
  50. 8e0317e objc: change option to be -Wobjc-interface-ivars by Fariborz Jahanian · 12 years ago
  51. b53bf00 Apply review comment from Jordan Rose. by Manuel Klimek · 12 years ago
  52. 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
  53. 587de5b implement Sema support for the alloc_size attribute by Nuno Lopes · 12 years ago
  54. f9d4cbd Adds the Refactoring library, which is a layer on top of the Tooling library by Manuel Klimek · 12 years ago
  55. c052dbb Recognize the MS inheritance attributes and turn them into attributes by John McCall · 12 years ago
  56. def1849 wire -fbounds-checking to the new LLVM bounds checking pass by Nuno Lopes · 12 years ago
  57. bfbfee5 Adds a method overwriteChangedFiles to the Rewriter. This is implemented by by Manuel Klimek · 12 years ago
  58. 0e5e092 Truthify a comment. by Richard Smith · 12 years ago
  59. 18df0eb objective-c: provide a useful 'fixit' suggestion when by Fariborz Jahanian · 12 years ago
  60. d6277fb [driver] When creating the compiler invocation out of command-line by Argyrios Kyrtzidis · 12 years ago
  61. 11ed43d Unpack enums in CodeCompletetionResult. by Benjamin Kramer · 12 years ago
  62. a77b759 CUDA: the device and host attributes must be inheritable, in order by Peter Collingbourne · 12 years ago
  63. 4dc34eb CUDA: add CodeGen support for global variable address spaces. by Peter Collingbourne · 12 years ago
  64. e5f8372 Bitpack CodeCompletionResults. by Benjamin Kramer · 12 years ago
  65. 11d1a69 Error when using typeid() with -fno-rtti. PR 12888. by Nico Weber · 12 years ago
  66. 2b309fb objective-c: Warn if default synthesizing readonly IBOutlet properties by Fariborz Jahanian · 12 years ago
  67. c94a26f Missing line break. by Dmitri Gribenko · 12 years ago
  68. c470442 Simplify some users of DeclarationName::getNameKind. Fold getFETokenInfoAsVoid into its only caller. by Benjamin Kramer · 12 years ago
  69. e2010ee Inline a trivial clear() method. by Benjamin Kramer · 12 years ago
  70. 93a8534 Simplify code, add an assertion. by Benjamin Kramer · 12 years ago
  71. 671e3bc [analyzer] c++11: do not crash on namespace alias by Anna Zaks · 12 years ago
  72. 591b5f5 [analyzer] For locations, use isGLValue() instead of isLValue(). by Anna Zaks · 12 years ago
  73. ab7ad72 Suggest adding 'typename' when it would make the compiler by Kaelyn Uhrain · 12 years ago
  74. 1be17ab objc: use "class extension" instead of "continuation class" by Fariborz Jahanian · 12 years ago
  75. 3093b20 Lexer::ReadToEndOfLine: Only build the string if it's actually used and do so in a less malloc-intensive way. by Benjamin Kramer · 12 years ago
  76. 6e62988 Typo. by Chad Rosier · 12 years ago
  77. 593b91f Remove trailing periods which snuck into a few diagnostic strings. by Matt Beaumont-Gay · 12 years ago
  78. 01428ab Drop the question mark when complaining about a non-existing -Wno- flag. by Benjamin Kramer · 12 years ago
  79. a39238b Add -mno-implicit-float to the M group. by Chad Rosier · 12 years ago
  80. eecb22b [driver] Reword the warning message for missing value to a joined argument. by Chad Rosier · 12 years ago
  81. ad9689f Added two missing const qualifiers. by Abramo Bagnara · 12 years ago
  82. 25582fc Recover better from a missing 'typename' in a function template definition. by Richard Smith · 12 years ago
  83. 005af27 Rename the driver option to -mno-implicit-float, per Eli's suggestion. by Chad Rosier · 12 years ago
  84. 832a2aa Pulls diagnostics for temp file handling into the common diagnostic kinds. by Manuel Klimek · 12 years ago
  85. ee9ad5c [driver] Allow the driver to directly accept the -no-implicit-float option, so that the by Chad Rosier · 12 years ago
  86. da8d8c2 Add _alignof and __builtin_alignof as aliases for __alignof in by Douglas Gregor · 12 years ago
  87. ff1affe Warn about -Wno-foo where foo is an unknown warning option. This is helpful by Chad Rosier · 12 years ago
  88. 87014f3 [libclang] Properly handle @encode() in RecursiveASTVisitor and traverse by Argyrios Kyrtzidis · 12 years ago
  89. 4b0e6f1 Move the warnings for extra semi-colons under -Wextra-semi. Also, added by Richard Trieu · 12 years ago
  90. 3940ce8 Produce more useful 'duplicate case' diagnostics. Fixes PR9243, from Terry Long! by Douglas Gregor · 12 years ago
  91. def0762 Include the correct conversion context locations for condition expressions. by David Blaikie · 12 years ago
  92. 7d24e28 [libclang/AST] Index references of protocols in "@protocol(...)" syntax. by Argyrios Kyrtzidis · 12 years ago
  93. 9abf88c objective-c: perform strict type checking on property by Fariborz Jahanian · 12 years ago
  94. 7fe103c [objcmt] Rewrite messages to NSString's stringWithUTF8String:/stringWithCString: by Argyrios Kyrtzidis · 12 years ago
  95. f5343ff Allow objc @() syntax for enum types. by Argyrios Kyrtzidis · 12 years ago
  96. dc3eb6a Remove word 'block' from option and diagnostic I added in r156825. by Fariborz Jahanian · 12 years ago
  97. be0ee87 Improve some of the conversion warnings to fire on conversion to bool. by David Blaikie · 12 years ago
  98. 8f674a8 objective-c nonfragile abi: discourage ivar declarations by Fariborz Jahanian · 12 years ago
  99. 31c195a Fix our handling of visibility in explicit template instantiations. by Rafael Espindola · 12 years ago
  100. c608c3c Further improvement to wording of overload resolution diagnostics, and including by Richard Smith · 12 years ago