1. 52efc3f Refactor objective-c pointer assignment compatibility logic. No by Fariborz Jahanian · 15 years ago
  2. dbd872f DeclRefExpr stores a ValueDecl internally. by John McCall · 15 years ago
  3. 604e7f1 Correctly implement the C++03 and 0x restrictions on class-member using by John McCall · 15 years ago
  4. 812c154 Recover from dot accesses to record pointers and arrow accesses to records. by John McCall · 15 years ago
  5. 9a0c85e Code completion for Objective-C @ keywords that are statements or expressions by Douglas Gregor · 15 years ago
  6. c464ae8 Code completion for Objective-C @ directives by Douglas Gregor · 15 years ago
  7. d6a637f Rework how virtual member functions are marked. If a class has no key function, we now wait until the end of the translation unit to mark its virtual member functions as references. This lays the groundwork for fixing PR5557. by Anders Carlsson · 15 years ago
  8. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  9. 4664649 reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. by Chris Lattner · 15 years ago
  10. 1ade4ca revert my previous patch, it is breaking something and I don't have time by Chris Lattner · 15 years ago
  11. a564b17 implement PR4451, improving error recovery for a mistaken : where a :: was by Chris Lattner · 15 years ago
  12. ed97649 Fix "using typename" and the instantiation of non-dependent using declarations. by John McCall · 15 years ago
  13. 1ab537b Unify the end-of-class code paths used by the parser and template by Douglas Gregor · 15 years ago
  14. 51f9404 When instantiating a class, if a base specifier is not dependent we still need to copy its attributes down to the instantiated class. by Anders Carlsson · 15 years ago
  15. 701c89e Honor using declarations in overload resolution. Most of the code for by John McCall · 15 years ago
  16. 802ab45 Improve source location information for C++ member initializers in a by Douglas Gregor · 15 years ago
  17. 5ec02ae In Sema, whenever we think that a function is going to cause a vtable to be generated, we mark any virtual implicit member functions as referenced. by Anders Carlsson · 15 years ago
  18. 1bcee0a Rip out the last remaining implicit use of OverloadedFunctionDecl in Sema: by John McCall · 15 years ago
  19. 2f841ba Stop trying to analyze class-hierarchies for dependently-scoped id-expressions; by John McCall · 15 years ago
  20. 6bc9768 Fix a code gen. crash synthesizing a destructor. Fixes pr5660. by Fariborz Jahanian · 15 years ago
  21. aa81e16 Rework how we support C++ implicit member accesses. If we can resolve an by John McCall · 15 years ago
  22. 4ba3136 Move the checking of overridden virtual functions into the code path by Douglas Gregor · 15 years ago
  23. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago
  24. 3790980 When we're trying to define an implicit virtual destructor, make sure that we have a valid delete operator. by Anders Carlsson · 15 years ago
  25. 2afce72 Refactor our handling of expression evaluation contexts, so that Sema by Douglas Gregor · 15 years ago
  26. 51ffb0c Implement support for default template arguments of function templates. by Douglas Gregor · 15 years ago
  27. 5b6d70e Diagnose ill-formed uses of default template arguments in by Douglas Gregor · 15 years ago
  28. f88f7ab Some fancy footwork to move the decision on how by Fariborz Jahanian · 15 years ago
  29. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  30. d1a7846 Have the parser tell sema whether a member declaration is a function definition. This allows sema to not emit spurious diagnostics in some invalid code. by Sebastian Redl · 15 years ago
  31. 2fe168f Refactor argument collection of constructor calls using the common routine. by Fariborz Jahanian · 15 years ago
  32. 4cd1c70 More cleanup of argument call collection. by Fariborz Jahanian · 15 years ago
  33. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  34. 048f52a Refactor collection of call arguments in common code. by Fariborz Jahanian · 15 years ago
  35. 8cfe5a7 Explicitly track the condition variable within an "if" statement, by Douglas Gregor · 15 years ago
  36. a79f8b3 Fix a recent regression probably caused by addition of altivec-style by Fariborz Jahanian · 15 years ago
  37. 0da76df Centralize and complete the computation of value- and type-dependence for DeclRefExprs by Douglas Gregor · 15 years ago
  38. d5532b6 Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations" into by John McCall · 15 years ago
  39. 5b3f913 Reorganize the intermediate BuildDeclarationNameExpr routines again. by John McCall · 15 years ago
  40. 7453ed4 Consider a FunctionTemplate to be an overload all on its lonesome. Track by John McCall · 15 years ago
  41. d2ede7d Overload resolution doesn't decide whether to do ADL or not anymore; stopping by John McCall · 15 years ago
  42. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  43. bbd37c6 Added rudimentary C++0x attribute support. by Sean Hunt · 15 years ago
  44. a481edb Cope with extraneous "template" keyword when providing an out-of-line by Douglas Gregor · 15 years ago
  45. f6e6fc8 Implement C++ [basic.lookup.classref]p3, which states how the type by Douglas Gregor · 15 years ago
  46. a7cf23a Don't issue spurious diagnostic with Obj-C fast enumeration. (radar 7409165). by Fariborz Jahanian · 15 years ago
  47. 4ad9685 Objective-C code completion within properties after "setter = " or by Douglas Gregor · 15 years ago
  48. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  49. a93b108 Rename CodeCompleteObjCProperty to something more specific. No functionality change. by Douglas Gregor · 15 years ago
  50. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  51. 6826314 Overhaul previous-declaration and overload checking to work on lookup results by John McCall · 15 years ago
  52. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  53. a165da0 Track overriding methods when instantiating a template class. Fixes PR5550. by Sebastian Redl · 15 years ago
  54. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  55. cc5306a Improve on diagnosing type mismatches because of by Fariborz Jahanian · 15 years ago
  56. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  57. 7d384dd Split LookupResult into its own header. by John McCall · 15 years ago
  58. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  59. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  60. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  61. 60b01cc Rename Objective-C message send completion functions to indicate that we're referring to message sends by Douglas Gregor · 15 years ago
  62. c09cba6 Pass source locations of identifiers referenced by @class through Action::ActOnForwardClassDeclaration(). by Ted Kremenek · 15 years ago
  63. 314be4e Store "sugared" decls in LookupResults (i.e. decl aliases like using declarations); by John McCall · 15 years ago
  64. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  65. 9f853df Unify the way destructor epilogues are generated for synthesized and regular destructors. Also fix PR5529. by Anders Carlsson · 15 years ago
  66. a24dc2e Carry lookup configuration throughout lookup on the LookupResult. Give by John McCall · 15 years ago
  67. 6d70139 Make sure that virtual destructors have delete operators. by Anders Carlsson · 15 years ago
  68. 78f7455 Factor finding a deallocation function for a record type out into a separate function. by Anders Carlsson · 15 years ago
  69. 891fdae When adding the underlying declaration of a decl to a lookup-results by Douglas Gregor · 15 years ago
  70. a82e4ae - Have TryStaticImplicitCast set the cast kind to NoOp when binding a reference. CheckReferenceInit already inserts implicit casts to the necessary types. This fixes an assertion in CodeGen for some casts and brings a fix for PR5453 close, if I understand that bug correctly. by Sebastian Redl · 15 years ago
  71. 19aeac6 When type-checking a static cast (or the static_cast part of a C-style by Douglas Gregor · 15 years ago
  72. 3a2838d Rework Sema code completion interface. by Daniel Dunbar · 15 years ago
  73. caddba0 Recognize (and check) pointer-to-member template arguments that are by Douglas Gregor · 15 years ago
  74. fb898e1 When comparing template parameter lists, distinguish between three cases: by Douglas Gregor · 15 years ago
  75. 7ca8b06 writable atomic property's setter/getter must be in 'lock' step of by Fariborz Jahanian · 15 years ago
  76. f35f828 Improve diagnostics when a default template argument does not match by Douglas Gregor · 15 years ago
  77. d9e1530 Move handling of template parameter packs out of the by Douglas Gregor · 15 years ago
  78. e752641 Refactoring of template-argument checking code to reduce nesting, by Douglas Gregor · 15 years ago
  79. 9148c3f Before checking a template template argument against its corresponding by Douglas Gregor · 15 years ago
  80. 788cd06 Introduce a new representation for template template by Douglas Gregor · 15 years ago
  81. 314b97f Improve parsing of template arguments to lay the foundation for by Douglas Gregor · 15 years ago
  82. d288baf Further change in a comment. by Fariborz Jahanian · 15 years ago
  83. 9aea0ce Removed a FIXME on nested type specifier warning. by Fariborz Jahanian · 15 years ago
  84. 3f17a37 Fix build after r86579. by Benjamin Kramer · 15 years ago
  85. 0f8716b Improve instantiation of default template arguments for nested by Douglas Gregor · 15 years ago
  86. 49c16da Unify the codepaths used to verify base and member initializers for explicitly by Eli Friedman · 15 years ago
  87. c9132b6 Test commit - minor terminology change to my recent patch suggested by John McCall by Sean Hunt · 15 years ago
  88. 36a862f Patch to gives an error that at least points users in the direction of the error, rather by Fariborz Jahanian · 15 years ago
  89. c4df6d2 Add basic code completion support for ObjC messages. by Steve Naroff · 15 years ago
  90. 5dbad3d Improve the -Wsign-compare heuristics: by John McCall · 15 years ago
  91. 393896f Fixed two places where we needed to force completion of a type by Douglas Gregor · 15 years ago
  92. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  93. 6ca7cfb When instantiating a UnaryOperator, allow the resulting expression to by Douglas Gregor · 15 years ago
  94. 12c118a Switch parsing of using declarations over to ParseUnqualifiedId. by Douglas Gregor · 15 years ago
  95. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 15 years ago
  96. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
  97. 014e88d Parsing and semantic analysis for template-ids that name overloaded by Douglas Gregor · 15 years ago
  98. 2d1c214 Replace the code that parses member access expressions after "." or by Douglas Gregor · 15 years ago
  99. 02a24ee Use ParseUnqualifiedId when parsing id-expressions. This eliminates by Douglas Gregor · 15 years ago
  100. 550d9b2 Implement "incremental" template instantiation for non-type template by Douglas Gregor · 15 years ago