1. 76fd105 [OpenCL] Fix atomic Builtins check for address spaces of non-atomic pointer by Anastasia Stulova · 10 years ago
  2. 850269a [Sema] Add warning when comparing nonnull and null by George Burgess IV · 10 years ago
  3. 0c6124b PR17381: Treat undefined behavior during expression evaluation as an unmodeled by Richard Smith · 10 years ago
  4. 3e3bb95b Add the `pass_object_size` attribute to clang. by George Burgess IV · 10 years ago
  5. d7bed4d [coroutines] Factor out co_await representation into common base class for co_await and co_yield, and use it to hold await_* calls. by Richard Smith · 10 years ago
  6. da7b27f [Sema] Combine similar diagnostics using %select. NFC by Craig Topper · 10 years ago
  7. 7f77eb9 [Sema] Don't crash trying to diagnose abs called on a pointer type by David Majnemer · 10 years ago
  8. 5ba2c50 Make SemaBuiltinCpuSupports a static function. NFC. by Craig Topper · 10 years ago
  9. a86e70d Fix indentation. NFC by Craig Topper · 10 years ago
  10. 03107a4 Add support for __builtin_{add,sub,mul}_overflow. by John McCall · 10 years ago
  11. 148e0d3 [Sema] Implement -Wdouble-promotion for clang. by George Burgess IV · 10 years ago
  12. 18677d5 Skip NonNull sema checks in unevaluated contexts. by Eric Fiselier · 10 years ago
  13. a3a7c56 Diagnose const atomics in __atomic builtins. by Eric Fiselier · 10 years ago
  14. 9674a64 [CUDA] Add appropriate host/device attribute to builtins. by Artem Belevich · 10 years ago
  15. c7d5c94 Support __builtin_ms_va_list. by Charles Davis · 10 years ago
  16. 84df123 Introduce __builtin_nontemporal_store and __builtin_nontemporal_load. by Michael Zolotukhin · 10 years ago
  17. 1a3320e [OPENMP 4.0] Initial support for array sections. by Alexey Bataev · 10 years ago
  18. 7230a22 Revert r245496 "[CUDA] Add appropriate host/device attribute to builtins." by Artem Belevich · 10 years ago
  19. 39259ff [CUDA] Add appropriate host/device attribute to builtins. by Artem Belevich · 10 years ago
  20. 5dfac81 [ObjC] Circular containers: add support of subclasses by Alex Denisov · 10 years ago
  21. 02d5d86 Rename the non-coding style conformant functions in namespace Builtins by Eric Christopher · 10 years ago
  22. 5054cb0 Warn when an Objective-C collection literal element is converted to an incompatible type. by Douglas Gregor · 10 years ago
  23. 642f173 Switch users of the 'for (StmtRange range = stmt->children(); range; ++range)‘ pattern to range for loops. by Benjamin Kramer · 10 years ago
  24. 2b41771 Parse 'technical term' format specifier. by Ted Kremenek · 10 years ago
  25. d983270 Add support for the x86 builtin __builtin_cpu_supports. by Eric Christopher · 10 years ago
  26. ab9db51 Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). by Alexander Kornienko · 10 years ago
  27. 3d9d929 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
  28. b4866e8 Diagnose unsafe uses of nil and __nonnull pointers. by Douglas Gregor · 10 years ago
  29. 59b2d83 This patch implements clang support for the ACLE special register intrinsics by Luke Cheeseman · 10 years ago
  30. c6eb650 [Sema] Make the atomic builtins more efficient by reducing volatility by David Majnemer · 11 years ago
  31. 7800f1f [Sema] Don't use dyn_cast to detect an AtomicType by David Majnemer · 11 years ago
  32. 78b8653 [AArch64 ACLE] Allow to define poly64_t as 'unsigned long long' on LLP64 system. by Kevin Qin · 11 years ago
  33. 5722c0f [SystemZ] Add support for z13 low-level vector builtins by Ulrich Weigand · 11 years ago
  34. b673c65 Extend format specifier checking to include field function pointers in addition to variable function pointers. Addresses PR21082. by Aaron Ballman · 11 years ago
  35. 239eec7 Add Clang support for remaining integer divide and permute instructions from ISA 2.06 by Nemanja Ivanovic · 11 years ago
  36. df8f73f [Sema] Diagnose references to unbound arrays in function definitions by David Majnemer · 11 years ago
  37. 61a5bbf [Sema] Correctly recurse when looking for [*] in function definitions by David Majnemer · 11 years ago
  38. 3a610eb [SystemZ] Support transactional execution on zEC12 by Ulrich Weigand · 11 years ago
  39. e50adcb [PPC] Move argument range checks for HTM and crypto builtins to Sema by Kit Barton · 11 years ago
  40. bac8b6b -Wdynamic-class-memaccess: Also warn about array types. by Nico Weber · 11 years ago
  41. c44b35e Dedent code for -Wdynamic-class-memaccess warning. No behavior change. by Nico Weber · 11 years ago
  42. c403a1c MS ABI: Accept calls to an unprototyped declaration of _setjmp by David Majnemer · 11 years ago
  43. 98bd098 [clang] Replacing asserts with static_asserts where appropriate by Gabor Horvath · 11 years ago
  44. ad80af8 -Wempty-body: fix false negative triggered by macros by Dmitri Gribenko · 11 years ago
  45. ba3e5ec MS ABI: Implement __GetExceptionInfo for std::make_exception_ptr by David Majnemer · 11 years ago
  46. 0a6da5d [X86, AVX2] Replace inserti128 and extracti128 intrinsics with generic shuffles by Sanjay Patel · 11 years ago
  47. 0c351ab [X86, AVX] replace vextractf128 intrinsics with generic shuffles by Sanjay Patel · 11 years ago
  48. 2717328 Under duress, move check for target support of __builtin_setjmp/ by Joerg Sonnenberger · 11 years ago
  49. 7f6aa52 [X86, AVX] Replace vinsertf128 intrinsics with generic shuffles. by Sanjay Patel · 11 years ago
  50. 3a74345 Make helper functions static by Benjamin Kramer · 11 years ago
  51. e1d882c New ObjC warning: circular containers. by Alex Denisov · 11 years ago
  52. ad8d849 Move one more diagnostic into the new -Wformat-pedantic group. by Daniel Jasper · 11 years ago
  53. 7934007 AT.isValid() should come before AT.matchesType() by Seth Cantrell · 11 years ago
  54. b480296 Add a format warning for "%p" with non-void* args by Seth Cantrell · 11 years ago
  55. e0ca6e1 Sema: Remove stray static by Benjamin Kramer · 11 years ago
  56. 947efbc Patch to prevent crash when default argument expression by Fariborz Jahanian · 11 years ago
  57. ac0d58b [X86] Remove the blendps/blendpd builtins. They aren't used by the intrinsic headers. We use appropriate shuffle vector instead. by Craig Topper · 11 years ago
  58. 1e2f885 [X86] Correct immediate range checking for blendps/blendpd/blendpd256 builtins. by Craig Topper · 11 years ago
  59. 5123664 Sema: __assume with side effects shouldn't result in invalid AST nodes by David Majnemer · 11 years ago
  60. ced8bdf Sema: Parenthesized bound destructor member expressions can be called by David Majnemer · 11 years ago
  61. a9b01eb Add support for inserting ArrayRef<FixItHint> into DiagnosticBuilder. by Alexander Kornienko · 11 years ago
  62. f8dce0f [Objective-C]. Provide a new formatting kind, "os_trace" which by Fariborz Jahanian · 11 years ago
  63. 6b5ed34 Add support for analyzing FreeBSD kernel printf extensions. by Dimitry Andric · 11 years ago
  64. 8dd7d0d [X86] Add range checking on immediate arguments on XOP vpcom builtins. by Craig Topper · 11 years ago
  65. 1a8b047 [X86] Add immediate range checking for a couple XOP builtins. by Craig Topper · 11 years ago
  66. 1601525 [X86] Add range checking to the immediate arguments of many of the SSE/AVX builtins. by Craig Topper · 11 years ago
  67. e85cff8 Sema: Ensure that __c11_atomic_fetch_add has a pointer to complete type by David Majnemer · 11 years ago
  68. 95b0d73 [X86] Add immediate range checking to AVX512 integer comparision builtins. by Craig Topper · 11 years ago
  69. 1d59f99 Initial support for Win64 SEH IR emission by Reid Kleckner · 11 years ago
  70. a3306ca [x86] Teach Sema to check size of comparison immediate on avx512 cmpps/cmppd buitins. by Craig Topper · 11 years ago
  71. 36d0b2b Extend the self move warning to record types. by Richard Trieu · 11 years ago
  72. 19acc3d Rename RefersToCapturedVariable to RefersToEnclosingVariableOrCapture, NFC by Alexey Bataev · 11 years ago
  73. dd84ec5 [x86] Add range checking to the constant argument of cmpps/pd/ss/sd builtinas. by Craig Topper · 11 years ago
  74. 0fc95ad [c Sema]. Patch fixes pointer-bool-conversion warning on C code by Fariborz Jahanian · 11 years ago
  75. 07649fb Renamed RefersToEnclosingLocal bitfield to RefersToCapturedVariable. by Alexey Bataev · 11 years ago
  76. f770683 Implement the __builtin_call_with_static_chain GNU extension. by Peter Collingbourne · 11 years ago
  77. 2521f36 When checking for nonnull parameter attributes, also check the ParmVarDecl since the attribute may reside there, instead of just on the FunctionDecl. Fixes PR21668. by Aaron Ballman · 11 years ago
  78. e8efd99 PR21706: -Wunsequenced was missing warnings when leaving a sequenced region that contained side effects. by Richard Smith · 11 years ago
  79. 791b86e Add the exception for strings in logical and expressions to -Wstring-conversion by Richard Trieu · 11 years ago
  80. ef202d9 [Sema] Patch to issue warning on comparing parameters with by Fariborz Jahanian · 11 years ago
  81. 6572489 Fix issues missed during the review of r222099. by Richard Trieu · 11 years ago
  82. 5f951ee Recommit r222044 with a test fix - it does not make sense to hunt by Anton Korobeynikov · 11 years ago
  83. 50fc68f Again revert r222044 to resolve darwin objc test fails. by Anton Korobeynikov · 11 years ago
  84. dc12b36 Follow-up to D6217 by Anton Korobeynikov · 11 years ago
  85. b7859dd [Sema]. Warn when logical expression is a pointer by Fariborz Jahanian · 11 years ago
  86. 3365bfc Revert r221702 until I address Richard Trieu's comments. by Fariborz Jahanian · 11 years ago
  87. c5fd484 Patch to warn when logical evaluation of operand evalutes to a true value; by Fariborz Jahanian · 11 years ago
  88. d6efd3e This patch reverts r220496 which issues warning on comparing by Fariborz Jahanian · 11 years ago
  89. 4c8cb14 patch to issue warning on comparing parameters with by Fariborz Jahanian · 11 years ago
  90. 5b99350 Improvements to -Wnull-conversion by Richard Trieu · 11 years ago
  91. c694e69 Patch to warn on interger overflow in presence of by Fariborz Jahanian · 11 years ago
  92. b29a743 [complex] Teach the other two binary operators on complex numbers (== by Chandler Carruth · 11 years ago
  93. d2208b5 Add __sync_fetch_and_nand (again) by Hal Finkel · 11 years ago
  94. d9dd4d2 Don't trap when passing non-POD arguments to variadic functions in MS-compatibility mode by Hans Wennborg · 11 years ago
  95. ee90a22 Support the assume_aligned function attribute by Hal Finkel · 11 years ago
  96. 566c14e Fix the argument index error of __builtin___memccpy_chk by Steven Wu · 11 years ago
  97. 3e6a0be Patch to check at compile time for overflow when by Fariborz Jahanian · 11 years ago
  98. ab4fe98 patch to add missing warning on sizeof wrong parameter by Fariborz Jahanian · 11 years ago
  99. fba4fe6 Objective-C. Under a special flag, -Wcstring-format-directive, by Fariborz Jahanian · 11 years ago
  100. 6485fe4 Objective-C. Under a special flag, -Wcstring-format-directive, by Fariborz Jahanian · 11 years ago