1. 0f12507 Improve the error message slightly for files that aren't using the expected UTF-8 encoding. Patch by Seth Cantrell. by Eli Friedman · 13 years ago
  2. 457a377 Fix a crash involving a multi-dimensional dependent VLA. PR11744. by Eli Friedman · 13 years ago
  3. d2e7090 Post open source analyzer build checker-259. by Ted Kremenek · 13 years ago
  4. d9b02e7 constexpr: add support for anonymous struct and union members in literal types. by Richard Smith · 13 years ago
  5. 51cb75a Clean up comment. by Eric Christopher · 13 years ago
  6. d081baa Try to unbreak the FreeBSD toolchain's detection of 32-bit targets by Chandler Carruth · 13 years ago
  7. 3943b1c Allow typo correction to be disabled in BuildOverloadedCallExpr variant. by Kaelyn Uhrain · 13 years ago
  8. 1621e75 Restore a tiny bit of functionality that I completely overlooked in the by Chandler Carruth · 13 years ago
  9. cd78e61 Avoid correcting unknown identifiers to types where types aren't allowed. by Kaelyn Uhrain · 13 years ago
  10. ada4fa7 [driver] Do emit the diagnostics when CompilerInvocation::CreateFromArgs() fails. by Argyrios Kyrtzidis · 13 years ago
  11. 60a09dc Add custom callback object for typo correction in BuildRecoveryCallExpr. by Kaelyn Uhrain · 13 years ago
  12. d1bb4ae When we're substituting into a function parameter pack and expect to by Douglas Gregor · 13 years ago
  13. 00646ba The Linux pattern of adding all the search paths that exist doesn't seem by Chandler Carruth · 13 years ago
  14. 32f88be Remove the 'ToolTriple' concept from the NetBSD toolchain along with my by Chandler Carruth · 13 years ago
  15. 0671555 Delete still more remnants of the now dead HostInfo. The janitoring will by Chandler Carruth · 13 years ago
  16. 18d7f3a Delete the driver's HostInfo class. This abstraction just never really by Chandler Carruth · 13 years ago
  17. 3366ef0 Add some really minimalist freebsd testing trees and use them in the by Chandler Carruth · 13 years ago
  18. e98e5b5 Add support for const pointer to literal-objc string as format attribute. by Jean-Daniel Dupas · 13 years ago
  19. 4d7ff6e Switch the ToolChain types to all store a Driver reference rather than by Chandler Carruth · 13 years ago
  20. 56576f7 test/CodeGen/avx-builtins.c: Fix more for -Asserts. by NAKAMURA Takumi · 13 years ago
  21. edf5a7b Fixup r148926, for -Asserts. by NAKAMURA Takumi · 13 years ago
  22. 08386a9 Remove the TargetTriple object that I added to the Driver recently. This by Chandler Carruth · 13 years ago
  23. ea04285 Have FreeBSD use even more of the same smarts as Linux is now using for by Chandler Carruth · 13 years ago
  24. 6f75cc3 Switch FreeBSD to just include both '/usr/lib32' and '/usr/lib' in the by Chandler Carruth · 13 years ago
  25. fc52f75 Switch the Linux C++ standard library header search logic over to use by Chandler Carruth · 13 years ago
  26. 1c6f04a Make a major refactoring to how the GCC installation detection works. by Chandler Carruth · 13 years ago
  27. 007baa9 Re-enable test that was broken by r148919 by Craig Topper · 13 years ago
  28. cf2362b Fix -fmacro-backtrace-limit=0 to show the entire macro backtrace. by Ted Kremenek · 13 years ago
  29. 3b6b61e disable this test for now. by Chris Lattner · 13 years ago
  30. 2ce8842 reapply r148902: by Chris Lattner · 13 years ago
  31. 9eb10cc fix broken testcase. by Chris Lattner · 13 years ago
  32. 2c0c745 Fix a crash for an edge case of the GNU ?: extension. by Eli Friedman · 13 years ago
  33. 8c9fe20 Fix r148920 to what I actually meant to commit. by Eli Friedman · 13 years ago
  34. e0dbedf Add missing check for placeholders. by Eli Friedman · 13 years ago
  35. 2ee2ac2 Represent 256-bit unaligned loads natively and remove the builtins. Similar change was made for 128-bit versions a while back. by Craig Topper · 13 years ago
  36. 00b4657 In TreeTransform<Derived>::TransformBlockExpr, call ActOnBlockError for errors, by Argyrios Kyrtzidis · 13 years ago
  37. af521da Revert 148902 which was part of 148901 which was reverted in r148906. by Argyrios Kyrtzidis · 13 years ago
  38. c0536c8 Fix PR11848: decree that an alias template contains an unexpanded parameter pack by Richard Smith · 13 years ago
  39. 5d613b5 Refactor the record decl forward declaration code a bit. by Eric Christopher · 13 years ago
  40. a70e246 Typo. by Eric Christopher · 13 years ago
  41. 9ddc624 use the new ConstantVector::getSplat method where it makes sense. by Chris Lattner · 13 years ago
  42. 443aac9 With a little more work in the tentative parse determining whether a statement by Nick Lewycky · 13 years ago
  43. 8efca6b Introduce a generation number for selector lookups in the global by Douglas Gregor · 13 years ago
  44. 568991b Only try to import a definition if there is an definition to import. by Douglas Gregor · 13 years ago
  45. 3add9f0 Make sure we correctly treat __is_convertible_to as an unevaluated context. PR11833. by Eli Friedman · 13 years ago
  46. dea8ba2 Fix test on cygwin (where va_list expands to a different type) by Jean-Daniel Dupas · 13 years ago
  47. 0d266d6 Whenever Sema attempts to look in the global method pool, try to load by Douglas Gregor · 13 years ago
  48. 43d1251 Add "multiple format attributes" support on block. by Jean-Daniel Dupas · 13 years ago
  49. 5ac4b69 Rework the external Sema source's ReadMethodPool() so that it doesn't by Douglas Gregor · 13 years ago
  50. 9d0064e Reduce peak memory usage of the static analyzer on sqlite3 (when using inlining) by 30%. by Ted Kremenek · 13 years ago
  51. b5c6bab arc migrator: Provide infrastructure to add options by Fariborz Jahanian · 13 years ago
  52. 44fae52 Factor out the addition of a method into the global method pool, and by Douglas Gregor · 13 years ago
  53. e6ca97f Fix NSLog format string checking for %@. by Ted Kremenek · 13 years ago
  54. d814eaf Switch PerformImplicitConversion over to use DefaultLvalueConversion for lvalue-to-rvalue conversion. by Eli Friedman · 13 years ago
  55. 1acbe5e Replace a hack to handle NSLog/NSLogv in sema by declaring them as Library Builtins. by Jean-Daniel Dupas · 13 years ago
  56. 9bc4fc4 Remove trailing slash in front of header name of ObjC builtins. by Jean-Daniel Dupas · 13 years ago
  57. 2c3038e [analyzer] Add the HTML file to the SATest diagnostic diff. by Anna Zaks · 13 years ago
  58. ab2d46e [analyzer] Testing: make diagnostic diffs more informative (add by Anna Zaks · 13 years ago
  59. c15707d [libclang] In clang::getCursorKindForDecl() don't return "UnexposedDecl" by Argyrios Kyrtzidis · 13 years ago
  60. 9d24c2c Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes PR 9466. by Ted Kremenek · 13 years ago
  61. 32d4abf Force triple on these tests to pacify the windows tester. by Nick Lewycky · 13 years ago
  62. fca84b2 Add a new warning, -Wover-aligned, which detects attempts to use the default by Nick Lewycky · 13 years ago
  63. 8908879 Fix one of the (larger) FIXMEs where we were misusing the Driver's idea by Chandler Carruth · 13 years ago
  64. a5ee634 Small code cleanup/simplification in Sema::ClassifyName. by Kaelyn Uhrain · 13 years ago
  65. 98c16b8 [libclang] When calling clang_getCursorReferenced on a class or protocol by Argyrios Kyrtzidis · 13 years ago
  66. 466f45a objc: Issue a generic diagnostic assigning to an objc object in any abi mode. by Fariborz Jahanian · 13 years ago
  67. b9ac30c [analyzer] Add more C taint sources/sinks. by Anna Zaks · 13 years ago
  68. fa5be91 Address one part of the FIXME I introduced my switching the triple by Chandler Carruth · 13 years ago
  69. 71efba0 The following patch adds __attribute__((no_address_safety_analysis)) which will allow to disable by Kostya Serebryany · 13 years ago
  70. 5d84bb4 At least within these classes, consistently spell 'GCC' as 'GCC'. by Chandler Carruth · 13 years ago
  71. 58f2b29 Start hoisting the logic for computing the target triple into its own by Chandler Carruth · 13 years ago
  72. ecd7b04 Promote the extension warning for attempts to catch a reference or by Douglas Gregor · 13 years ago
  73. cd0d56a When importing a RecordDecl as a DeclContext, make sure that we pull by Douglas Gregor · 13 years ago
  74. 7b383e4 objc: issue error if assigning objects in fragile-abi too. // rdar://10731065 by Fariborz Jahanian · 13 years ago
  75. 5602f7e Teach the AST importer about redeclaration chains for Objective-C by Douglas Gregor · 13 years ago
  76. 5d5051f Only mark an IdentifierInfo as having changed since deserialization by Douglas Gregor · 13 years ago
  77. 1ea742b On Darwin, use the system's <unwind.h> whenever it is by Douglas Gregor · 13 years ago
  78. 4a04d0b Remove HostInfo::useDriverDriver(). This was only used in two places by Chandler Carruth · 13 years ago
  79. 91e6076 Hoist the targeted triple object into an actual object in the Driver. by Chandler Carruth · 13 years ago
  80. f211662 Support decltype in member initializers. by David Blaikie · 13 years ago
  81. 5e089fe Support decltype as a simple-type-specifier. by David Blaikie · 13 years ago
  82. 495f42a Add a test for a diagnostic special case added in r148439, as requested by by Richard Smith · 13 years ago
  83. 2dd52e3 Reword/rename -Wswitch-unreachable-default. by David Blaikie · 13 years ago
  84. e1d82de Improve -Wswitch-enum diagnostic message. by David Blaikie · 13 years ago
  85. 23661d3 Revert various template unreachability code I committed accidentally. by David Blaikie · 13 years ago
  86. a9bb955 More fixes/tests. by David Blaikie · 13 years ago
  87. 25f4c19 Test for the previous commit/crash. by David Blaikie · 13 years ago
  88. 7154c03 Support undefined dependent bases. by David Blaikie · 13 years ago
  89. 36b7c63 Simple hack to do unreachable code analysis on template patterns. by David Blaikie · 13 years ago
  90. 7514f31 Rename Sema::isNullExpr() -> Sema::isSentinelNullExpr() which is more descriptive. by Argyrios Kyrtzidis · 13 years ago
  91. 0259042 Make driver tests more resilient to output trees containing symlinks -- by Chandler Carruth · 13 years ago
  92. 69b26d6 In CXXRecordDecl::isCLike(), also check for PODness. by Argyrios Kyrtzidis · 13 years ago
  93. e42670b objective-c: Ignore with warning forward class declaration whose name by Fariborz Jahanian · 13 years ago
  94. 8f675e4 Make sure the integer type used to align the vaarg address is the same as the by Akira Hatanaka · 13 years ago
  95. f96708d fixes location of "availability" attribute so warning is displayed at by Fariborz Jahanian · 13 years ago
  96. a8536c0 Ignore return type if its size is zero. by Akira Hatanaka · 13 years ago
  97. f75823f Remove extraneous ';'. by Bill Wendling · 13 years ago
  98. b832f6d Minor fixups for auto deduction of initializer lists. by Sebastian Redl · 13 years ago
  99. 05b7846 [libclang] For: @implementation I(cat) suppress subsequent references to 'I'. by Argyrios Kyrtzidis · 13 years ago
  100. 4f1813e Introduce Sema::isNullExpr() that contains the checks that by Argyrios Kyrtzidis · 13 years ago