1. 66874fb Use None rather than Optional<T>() where possible. by David Blaikie · 12 years ago
  2. d6d864f MCParser: Update method names per coding guidelines. by Jim Grosbach · 12 years ago
  3. dc84cd5 Include llvm::Optional in clang/Basic/LLVM.h by David Blaikie · 12 years ago
  4. 6b3d3e5 Process and handle attributes on conditions and for loop variables. Process and by Richard Smith · 12 years ago
  5. d4c3d66 Add a new 'type_visibility' attribute to allow users to by John McCall · 12 years ago
  6. 9818a1d [preprocessor] Split the MacroInfo class into two separate concepts, MacroInfo class by Argyrios Kyrtzidis · 12 years ago
  7. 0532140 PR15300: Support C++11 attributes on base-specifiers. We don't support any such by Richard Smith · 12 years ago
  8. 39e6ab4 Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 12 years ago
  9. 0dc4ff2 Prevent crash on multiple user errors (which I cannot reproduce in by Fariborz Jahanian · 12 years ago
  10. 896c7dd Don't warn on conversion from NULL to nullptr_t by David Blaikie · 12 years ago
  11. 3285c78 Fixed diagnostic nondeterministic order bug (pr14901). by Enea Zaffanella · 12 years ago
  12. db546fa Fix crash-on-invalid where a ParenListExpr shows up as a message receiver by Argyrios Kyrtzidis · 12 years ago
  13. 820b23d When a statement is dropped from the AST because it was invalid, make sure by Argyrios Kyrtzidis · 12 years ago
  14. 2e85e74 Sema: Unnest early exit and remove an unnecessary bad cast. by Benjamin Kramer · 12 years ago
  15. a574c89 Make helper functions static. by Benjamin Kramer · 12 years ago
  16. cfaed8d objective-C: synthesize properties in order of their by Fariborz Jahanian · 12 years ago
  17. 2620229 objective-C: When implementing custom accessor method for by Fariborz Jahanian · 12 years ago
  18. 68a932d Remove a const_cast by propagating constness to called functions by Dmitri Gribenko · 12 years ago
  19. 747836e Partially revert r175117 so that we don't break assumptions about how by Rafael Espindola · 12 years ago
  20. d2fdd42 merge hasCLanguageLinkage and isExternC. Keep the shorter name. by Rafael Espindola · 12 years ago
  21. 950fee2 Add a getLanguageLinkage method to VarDecls and FunctionDecls. Use it to fix by Rafael Espindola · 12 years ago
  22. d3b4f0e When marking derived classes' virtual methods ODR-used in order to trigger by Nick Lewycky · 12 years ago
  23. 3c86a5c The meat of this patch is in BuildCXXMemberCalLExpr where we make it use by Nick Lewycky · 12 years ago
  24. a2905ea Perform placeholder conversions on the controller of a _Generic expression. by John McCall · 12 years ago
  25. 9dd74c5 Diagnose loads of 'half' l-values in OpenCL. Patch by Joey Gouly! by John McCall · 12 years ago
  26. f4e955b [Modules] Cope better with top-level declarations loaded after being declared in the current translation unit <rdar://problem/13189985>. by Douglas Gregor · 12 years ago
  27. b7b2565 objective-C: Fixes a bogus warning due to not setting by Fariborz Jahanian · 12 years ago
  28. 223f0ff Remove some stray uses of <ctype.h> functions. by Jordan Rose · 12 years ago
  29. a4475a6 QoI: -Wreadonly-iboutlet-property should have the warning's location on the property. by Ted Kremenek · 12 years ago
  30. 1256434 objective-C: don't issue bogus warning about by Fariborz Jahanian · 12 years ago
  31. 3f6f51e Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 12 years ago
  32. 7666b03 Retain all hidden methods in the global method pool, because they may become visible <rdar://problem/13172858>. by Douglas Gregor · 12 years ago
  33. 6959acd Enable overloading of OpenCL events - this is needed for the overloaded OpenCL builtin functions. by Guy Benyei · 12 years ago
  34. 21f18c4 Add OpenCL samplers as Clang builtin types and check sampler related restrictions. by Guy Benyei · 12 years ago
  35. f5a6aef Apply the pure-virtual odr rule to other constructs which can call overloaded by Nick Lewycky · 12 years ago
  36. 3646c68 Simplify FindExternalVisibleDeclsByName by making it return a bool indicating by Richard Smith · 12 years ago
  37. 878d0ad -Wimplicit-fallthrough: fixed two cases where "fallthrough annotation in unreachable code" was issued incorrectly. by Alexander Kornienko · 12 years ago
  38. ce6a10e Don't check whether a friend declaration is correctly formed when instantiating, by Nick Lewycky · 12 years ago
  39. 5e25301 Use a dyn_cast to avoid a crash when the TypeLoc is not a ConstantArrayTypeLoc. by Chad Rosier · 12 years ago
  40. 7cea148 Test for virtual instead of pure here. It has the exact same effect, and John by Nick Lewycky · 12 years ago
  41. afbcab8 PR15095: Use more correct source locations for the InitListExpr we fake up for by Richard Smith · 12 years ago
  42. a4dc51b Add some missing diagnostics for C++11 narrowing conversions. by Richard Smith · 12 years ago
  43. 3fa3fea PR15132: Replace "address expression must be an lvalue or a function by Richard Smith · 12 years ago
  44. 802e226 Don't forget to run destructors when we create an array temporary of class type. by Richard Smith · 12 years ago
  45. b7e5eec This patch makes "&Cls::purevfn" not an odr use. This isn't what the standard by Nick Lewycky · 12 years ago
  46. 41f7b1a objc: Provide correct fixit instruction when two mismatched by Fariborz Jahanian · 12 years ago
  47. 5ebcb20 For ModuleLoader::makeModuleVisible() also pass the source location where the by Argyrios Kyrtzidis · 12 years ago
  48. 0162b83 Fixed segmentation fault when a CFGBlock has NULL successor. by Alexander Kornienko · 12 years ago
  49. 57dab71 Fix PR14881 by implementing conversion rules between int and complex int. by Bill Schmidt · 12 years ago
  50. 5f838aa Fix diagnostic for bad alignas use: it can't be applied to functions. by Richard Smith · 12 years ago
  51. cd0655b Add a new -Wundefined-inline warning for inline functions which are used but not by Nick Lewycky · 12 years ago
  52. be507b6 Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign. by Richard Smith · 12 years ago
  53. 1031884 Don't do delayed exception-specification checking on an invalid by Douglas Gregor · 12 years ago
  54. a31f65b [Sema][Attr]Fix alignment attribute printing. by Michael Han · 12 years ago
  55. 8c84028 Added outer template parameter lists to friend type AST nodes. by Enea Zaffanella · 12 years ago
  56. 29805ca Improve 'failed template argument deduction' diagnostic for the case where we by Richard Smith · 12 years ago
  57. 626799b When code completing in a statement, parenthesized expression, or by Douglas Gregor · 12 years ago
  58. d1f09b4 Allow the computation of the base priority for a declaration code completion result to consider the completion context by Douglas Gregor · 12 years ago
  59. 0efa62f Replace "failed template argument deduction" diagnostic with something useful by Richard Smith · 12 years ago
  60. 995e26b Remove elements from Sema.UndefinedInternals as functions are defined. Also by Nick Lewycky · 12 years ago
  61. 869709c Fix grammar in comment. by Nick Lewycky · 12 years ago
  62. f270519 Clarify the diagnostic for -Wnested-anon-types. by Richard Smith · 12 years ago
  63. 4ceaf33 Fix ODR-use of a MemberExpr to check before marking a pure function used. Remove by Nick Lewycky · 12 years ago
  64. 3e55e3e Fix unused variable warnings in -asserts build by Matt Beaumont-Gay · 12 years ago
  65. 7564bcc Add OpenCL error that a kernel function must have void return type. Includes a test case. by Tanya Lattner · 12 years ago
  66. 16bdd3b Hoist retrieval of Expr* into caller. No functionality change. by Ted Kremenek · 12 years ago
  67. cb5620c Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support by Dmitri Gribenko · 12 years ago
  68. e1ac4ae Also promote fp16 types to double when they're anonymous variadic arguments. by Tim Northover · 12 years ago
  69. 31aa577 Add "instancetype" as a code completion result for the return type of by Douglas Gregor · 12 years ago
  70. 5824b80 The instance methods of the root class of an Objective-C hieararchy by Douglas Gregor · 12 years ago
  71. 7586a6e Semantic analysis and CodeGen support for C11's _Noreturn. This is modeled as by Richard Smith · 12 years ago
  72. 4874a81 Don't warn on fall-through from unreachable code. by Alexander Kornienko · 12 years ago
  73. 1d87fba Provide a fixit for constexpr non-static data members. by David Blaikie · 12 years ago
  74. 7adf417 c: When checking on validity of sizeof passed as size of by Fariborz Jahanian · 12 years ago
  75. a367e9d Move -Wstatic-float-init fixit into a note & don't recover as if constexpr by David Blaikie · 12 years ago
  76. 6933e3b Don't fixit/recover from -Wstatic-float-init when it's not an error. by David Blaikie · 12 years ago
  77. 3d207e7 Mark a struct definition in an objc container with the TopLevelDeclInObjCContainer bit. by Argyrios Kyrtzidis · 12 years ago
  78. 98f988d by Joey Gouly · 12 years ago
  79. d03de6a Downgrade 'attribute ignored when parsing type' from error to warning, to match by Richard Smith · 12 years ago
  80. 4cd81c5 Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas. by Richard Smith · 12 years ago
  81. 8f3aacc Propagate the spelling list index for an attribute across template instantiation. by Richard Smith · 12 years ago
  82. 485b312 PR15100: look through type sugar when determining whether we have one of the by Richard Smith · 12 years ago
  83. cda7968 Actually remove the hack which was blocking the Borland-style attributes from by Richard Smith · 12 years ago
  84. 5cd532c Replace AS_MSTypespec with AS_Keyword, for representing any attribute spelled by Richard Smith · 12 years ago
  85. 3a2b7a1 Finish semantic analysis for [[carries_dependency]] attribute. by Richard Smith · 12 years ago
  86. bde67cf Undo my re-wording of the "ARC forbids Objective-C objects in ..." by Douglas Gregor · 12 years ago
  87. 4581d45 Forbid the use of objects in unions in Objective-C++ ARC. Fixes by Douglas Gregor · 12 years ago
  88. d98f708 Tests and a minor bugfix for [dcl.attr.depend]p1 (C++11 [[carries_dependency]] by Richard Smith · 12 years ago
  89. c5f7d6a Add a -pedantic warning: an anonymous union within an anonymous union is not by Richard Smith · 12 years ago
  90. 98bfbf5 Fix mismatch between pointer and pointee type when diagnosing an incorrect by Richard Smith · 12 years ago
  91. 8782761 Remove function that is newly dead as of r173538. by Nick Lewycky · 12 years ago
  92. 25cf8ab Revert r172285 (suppressing a 'redundant' -Wc++98-compat warning) and add a by Richard Smith · 12 years ago
  93. 01a4114 Preserve Sema::UndefinedInternals across PCH boundaries. Fixes by Nick Lewycky · 12 years ago
  94. 3ac83d6 patch for PR9027 and // rdar://11861085 by Fariborz Jahanian · 12 years ago
  95. d5617ee The standard ARM C++ ABI dictates that inline functions are by John McCall · 12 years ago
  96. b8b2c9d First pass at abstracting out a class for the target C++ ABI. by John McCall · 12 years ago
  97. c6dcea9 Silence unintended fallthrough diagnostic on a case label preceded with a normal label. by Alexander Kornienko · 12 years ago
  98. e992ed1 Don't suggest to insert [[clang::fallthrough]] before empty cases. Fix for multiple case labels. by Alexander Kornienko · 12 years ago
  99. b4b1d69 Sync 'in class initialization of static const double' extension up with GCC, by Richard Smith · 12 years ago
  100. d4497dd Clean up: since we have FunctionDecl::IsInline, make it store the right value by Richard Smith · 12 years ago