1. 24bae92 When performing substitution of template arguments within the body of by Douglas Gregor · 14 years ago
  2. 06a54a3 Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of getBody() when we are just checking the existence of a body, to avoid de-serialization of the body from PCH. by Argyrios Kyrtzidis · 14 years ago
  3. 8b5dec3 implement PR7569, warning about assignment to null, which by Chris Lattner · 14 years ago
  4. 03d98c5 Fix multiple emission of the this-> fixit for each instantiation by fixing the by Nick Lewycky · 14 years ago
  5. c721ae8 fix a bug I introduced in r107624 by Chris Lattner · 14 years ago
  6. fd79a9d rearrange some logic, no functionality change. by Chris Lattner · 14 years ago
  7. 8bb59a8 Fix vector literal/cast confusion - bug 6895. by John Thompson · 14 years ago
  8. 2597345 Fix rdar://8139785 "implement warning on dead expression in comma operator" by Argyrios Kyrtzidis · 14 years ago
  9. 12eb5d6 When typo correction produces a result that is not of the kind we're by Douglas Gregor · 14 years ago
  10. 0061962 Vector types are not arithmetic types, either. Note that we now ban by Douglas Gregor · 14 years ago
  11. 8eee119 Change Type::isFloatingType() to reflect the actual definition of a by Douglas Gregor · 14 years ago
  12. f918b83 Zero out a stale pointer by Douglas Gregor · 14 years ago
  13. c070cc6 Given Decl::isUsed() a flag indicating when to consider the "used" by Douglas Gregor · 14 years ago
  14. 949bd4b Do not treat @selector as lvalue (unlike g++). Patch by Nico Weber (pr7390). by Fariborz Jahanian · 14 years ago
  15. ad00b77 Fix a point of semantics with using declaration hiding: method templates by John McCall · 14 years ago
  16. 9d3347a Give Type::isIntegralType() an ASTContext parameter, so that it by Douglas Gregor · 14 years ago
  17. 2ade35e Introduce Type::isIntegralOrEnumerationType(), to cover those places by Douglas Gregor · 14 years ago
  18. 6e5122c Update equality and relationship comparisons of pointers to reflect by Douglas Gregor · 14 years ago
  19. 7dc480f tidy up by Chris Lattner · 14 years ago
  20. e3e210c Another chunk of the new RecursiveASTVisitor implementation: switch the return by Chandler Carruth · 14 years ago
  21. dfc35e3 Major redesign of the RecursiveASTVisitor. This implements the majority of the by Chandler Carruth · 14 years ago
  22. d64fdd0 Warn about comparisons between arrays and improve self-comparison by Douglas Gregor · 14 years ago
  23. d7c7338 Fixes a typo which prevented proper code gen. for by Fariborz Jahanian · 14 years ago
  24. e2a901a When using property-dot assignment syntax to call a setter method, by Fariborz Jahanian · 14 years ago
  25. 310b1c4 Use MaybeCreateCXXExprWithTemporaries for potential destruction of by Fariborz Jahanian · 14 years ago
  26. bf1a028 Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. by John McCall · 14 years ago
  27. 59da45a Build AST for copy-construction of copied-in by Fariborz Jahanian · 14 years ago
  28. c71a491 Preserve more information from a block's original function declarator, if one by John McCall · 14 years ago
  29. 82dc009 Restructure how we interpret block-literal declarators. Correctly handle by John McCall · 14 years ago
  30. 75f7c0f Remove a couple of unnecessary uses of IsStandardConversion. by John McCall · 14 years ago
  31. dc32cdf Fix unintentional method call due to false -> pointer conversion; patch by Dimitry Andric! by Daniel Dunbar · 14 years ago
  32. 88623ad In C++, one cannot assign from an arithmetic type to an enumeration by Douglas Gregor · 14 years ago
  33. 9ba6af8 Complain about sizeof(overloaded function) rather than crashing. by Douglas Gregor · 14 years ago
  34. 5a84dec Provide the overloaded functions for UnresolvedLookupExpr and by Douglas Gregor · 14 years ago
  35. 2d6b0e9 Improve our handling of reference binding for subobjects of by Douglas Gregor · 14 years ago
  36. 1fd6d44 Improve parser recovery when we encounter a dependent template name by Douglas Gregor · 14 years ago
  37. bc365c5 Introduce a method to get from an anonymous struct or union record declaration by John McCall · 14 years ago
  38. d2235f6 Reinstate r104117, Chandler Carruth's change that "[provides] a naming by Douglas Gregor · 14 years ago
  39. bd054db Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRange -> getSourceRange for TypeLoc. by Abramo Bagnara · 14 years ago
  40. ea1471e Support implicitly closing on 'this' in a block. Fixed PR7165. by John McCall · 14 years ago
  41. bf1cbaf Revert r104117, "Provide a naming class for UnresolvedLookupExprs, even when by Daniel Dunbar · 14 years ago
  42. c3f984f Provide a naming class for UnresolvedLookupExprs, even when occuring on by Chandler Carruth · 14 years ago
  43. 26bcf67 Implement C++ builtin operator candidates for vector types. by Douglas Gregor · 14 years ago
  44. 91f7ac7 Tweak typo-correction logic a bit regarding "super", so that we by Douglas Gregor · 14 years ago
  45. 6cfacfe Determine when the instantiation of a friend function defined inside a by Douglas Gregor · 14 years ago
  46. 9a0fcfe PR7117: Make sure we don't lose the calling convention for K&R-style by Eli Friedman · 14 years ago
  47. 4037833 fix rdar://7985267 - Don't emit an error about a non-pod argument by Chris Lattner · 14 years ago
  48. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  49. 6fb745b Rework when and how vtables are emitted, by tracking where vtables are by Douglas Gregor · 15 years ago
  50. b4eeaff When we encounter a non-dependent type during template instantiation, by Douglas Gregor · 15 years ago
  51. f3e6337 A correct fix for bug 6466. by Sebastian Redl · 15 years ago
  52. 0aa866f Revert 103247, it causes lots of test failures. by Sebastian Redl · 15 years ago
  53. 4409469 Pass the correct type to BuildMemberReferenceExpr. Fixes bug 6466. by Sebastian Redl · 15 years ago
  54. 8eb662e After some discussion, conservatively extend our sentinel check to discard by John McCall · 15 years ago
  55. eecf38f Fixed DISABLE_SMART_POINTERS breakage by Douglas Gregor · 15 years ago
  56. 586596f Rework our handling of temporary objects within the conditions of by Douglas Gregor · 15 years ago
  57. 323ed74 Rearchitect -Wconversion and -Wsign-compare. Instead of computing them by John McCall · 15 years ago
  58. 5f970ee When instantiating a function that was declared via a typedef, e.g., by Douglas Gregor · 15 years ago
  59. 06a9f36 Complete reimplementation of the synthesis for implicitly-defined copy by Douglas Gregor · 15 years ago
  60. 39957dc Added an RAII object that helps set up/tear down the Sema context by Douglas Gregor · 15 years ago
  61. 77bb1aa It turns out that basically every caller to RequireCompleteDeclContext by John McCall · 15 years ago
  62. cc8a5d5 Teach __builtin_offsetof to compute the offsets of members of base by Douglas Gregor · 15 years ago
  63. 1e3f5ba Ensure that cv-qualifiers are correctly removed for post-inc/decrements by Sean Hunt · 15 years ago
  64. 9d5d60f Diagnose __builtin_offsetof expressions that refer to bit-fields by Douglas Gregor · 15 years ago
  65. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 15 years ago
  66. e6ec5c4 When the qualifier of a id-expression is non-dependent but not by Douglas Gregor · 15 years ago
  67. 15dedf0 It's okay to refer to non-type template parameters anywhere they are by Douglas Gregor · 15 years ago
  68. c96be1e During template instantiation, set the naming class of by Douglas Gregor · 15 years ago
  69. 110acc1 Improve the diagnostic you get when making a qualified member access by John McCall · 15 years ago
  70. 2b147f0 When name lookup finds a single declaration that was imported via a by Douglas Gregor · 15 years ago
  71. b0fd483 Improve the diagnostic when we find something we did not expect in a by Douglas Gregor · 15 years ago
  72. cee2242 Add base paths to CK_UncheckedDerivedToBase and CK_DerivedToBaseMemberPointer. by Anders Carlsson · 15 years ago
  73. 5cf86ba Actually produce base paths for CastExprs of kind CK_DerivedToBase. by Anders Carlsson · 15 years ago
  74. 41b2dcd Add BasePath arguments to all cast expr constructors. by Anders Carlsson · 15 years ago
  75. e25a96c Pass the base specifiers through to CheckDerivedToBaseConversion. No functionality change yet. by Anders Carlsson · 15 years ago
  76. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 15 years ago
  77. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 15 years ago
  78. 92e986e Implement template instantiation for Objective-C++ message sends. We by Douglas Gregor · 15 years ago
  79. a41a8c5 Whenever we complain about a failed initialization of a function or by Douglas Gregor · 15 years ago
  80. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 15 years ago
  81. 8f00dcf Switch Sema::FindCompositePointerType() over to InitializationSequence. by Douglas Gregor · 15 years ago
  82. d6e44a3 Collapse the three separate initialization paths in by Douglas Gregor · 15 years ago
  83. ccfa963 Expand the argument diagnostics for too many arguments and give by Eric Christopher · 15 years ago
  84. d77b9a2 Expand argument diagnostic for too few arguments to give the number by Eric Christopher · 15 years ago
  85. 1aae80b Thread a Scope pointer into BuildRecoveryCallExpr to help typo by Douglas Gregor · 15 years ago
  86. aaf8716 Teach typo correction about various language keywords. We can't by Douglas Gregor · 15 years ago
  87. 55b3884 When diagnosing suspicious precedence or assignments, move the fix-it by Douglas Gregor · 15 years ago
  88. 709210f Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance by Ted Kremenek · 15 years ago
  89. 01e56ae Implement C++ [temp.local]p4, which specifies how we eliminate by Douglas Gregor · 15 years ago
  90. 966c78b change Scope::WithinElse to be a normal scope flag, widen the by Chris Lattner · 15 years ago
  91. aec43db fix a fixme, stop evaluating getCurMethodDecl() repeatedly by Chris Lattner · 15 years ago
  92. eb483eb fix PR6811 by not parsing 'super' as a magic expression in by Chris Lattner · 15 years ago
  93. b9d4fc1 actually the interface grossness in the previous patch was due to by Chris Lattner · 15 years ago
  94. 7f81652 factor the code that handles "expr.field" when expr is a by Chris Lattner · 15 years ago
  95. 03a4bee Remove fixit for string literal comparison. Telling the user to use 'strcmp' is bad, and by Ted Kremenek · 15 years ago
  96. d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 15 years ago
  97. 9ab1454 Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 15 years ago
  98. fc2ca56 Return early from Sema::MarkDeclarationReferenced when we know there by Douglas Gregor · 15 years ago
  99. 161755a Implement the protected access restriction ([class.protected]), which requires by John McCall · 15 years ago
  100. 6aae87d Diagnose invalid code with -fobjc-nonfragile-abi2 when by Fariborz Jahanian · 15 years ago