1. d4dca08 Rework parsing of pseudo-destructor expressions and explicit by Douglas Gregor · 15 years ago
  2. 93649fd Implement crazy destructor name lookup semantics differently in by Douglas Gregor · 15 years ago
  3. ce056bc Eliminate the default arguments to ASTContext::getFunctionType(), by Douglas Gregor · 15 years ago
  4. b10cd04 Implement support for parsing pseudo-destructor expression with a nested-name-specifier, e.g., by Douglas Gregor · 15 years ago
  5. 5e895a8 Commiting a revert from dgregor of a bit of destructor logic until we can by Chandler Carruth · 15 years ago
  6. b372b0f Fixed a crash specific to blocks in c++ uncovered by an internal test suite. by Fariborz Jahanian · 15 years ago
  7. 124b878 Improve parsing and instantiation of destructor names, so that we can by Douglas Gregor · 15 years ago
  8. ad7fe86 Fix leak in CXXNewExpr where the SubExprs array would get allocated directly using 'new[]' instead of the allocator associated with ASTContext. by Ted Kremenek · 15 years ago
  9. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 15 years ago
  10. 5769d61 Thread a source location into the template-argument deduction routines. There by John McCall · 15 years ago
  11. ae4c77d When we're parsing an expression that may have looked like a by Douglas Gregor · 15 years ago
  12. 86ff308 Extract a common structure for holding information about the definition by John McCall · 15 years ago
  13. 4a73ea9 Teach the allocation function overload handling to deal with templates, and by Chandler Carruth · 15 years ago
  14. a873dfc Implement the lvalue-to-rvalue conversion where needed. The by Douglas Gregor · 15 years ago
  15. 6997aae Switch expressions like T() and T(1,2) over to new-style initialization. I'm by Eli Friedman · 15 years ago
  16. ad323a8 Fix a major oversight in the comparison of standard conversion by Douglas Gregor · 15 years ago
  17. 86820f5 Pass access specifiers around in overload resolution. by John McCall · 15 years ago
  18. eec51cf Give UnresolvedSet the ability to store access specifiers for each declaration. by John McCall · 15 years ago
  19. 3005efe Make the AST explicitly represent the cast of the first operand of a by Eli Friedman · 15 years ago
  20. 9d12503 Preserve type source information in explicit cast expressions. by John McCall · 15 years ago
  21. adbb8f8 Record some basic information about bad conversion sequences. Use that by John McCall · 15 years ago
  22. cbce606 So I was sitting around, trying vainly to think of something to commit, and then by John McCall · 15 years ago
  23. 1d31833 Introduce a specific representation for the ambiguous implicit conversion by John McCall · 15 years ago
  24. 8120162 Change the printing of OR_Deleted overload results to print all the candidates, by John McCall · 15 years ago
  25. 828a197 Add an "implicit" bit to CXXThisExpr, so that we can track by Douglas Gregor · 15 years ago
  26. b1622a1 Improve the diagnostics used to report implicitly-generated class members by John McCall · 15 years ago
  27. de8ac49 Get rid of more unnecessary code. by Eli Friedman · 15 years ago
  28. d2835b7 Get rid of some unnecessary code. by Eli Friedman · 15 years ago
  29. 5132655 When transforming CXXExprWithTemporaries and CXXBindTemporaryExpr by Douglas Gregor · 15 years ago
  30. 154fe98 There is no such thing as typeinfo for a cv-qualified type. Assert by Douglas Gregor · 15 years ago
  31. 765ccba Diagnose the use of incomplete types in C++ typeid expressions by Douglas Gregor · 15 years ago
  32. f57f207 Remove cv-qualifiers from the argument to typeid by Douglas Gregor · 15 years ago
  33. 6e790ab Allow the first parameter of operator new to be a cv-qualified by Douglas Gregor · 15 years ago
  34. 90f9382 Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequence by Douglas Gregor · 15 years ago
  35. d6542d8 Switch InitializedEntity from TypeLoc down to just QualTypes, since we don't use the location information but we did spend a bunch of time building faked-up TypeLocs by Douglas Gregor · 15 years ago
  36. 18ef5e2 Switch the initialization required by return statements over to the by Douglas Gregor · 15 years ago
  37. fc28448 implement PR5654: add -fassume-sane-operator-new, which is enabled by default, and adds the malloc attribute to the global function new() and to the overloaded new operators. by Nuno Lopes · 15 years ago
  38. 6864748 Fix semantic diagnostics that embed English works, from Nicola Gigante! by Douglas Gregor · 15 years ago
  39. 5ee56e9 Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Action::FullExpr to Action::MakeFullExpr to avoid name clashes. by Anders Carlsson · 15 years ago
  40. 99a2e60 Switch the C++ new expression over to InitializationSequence, rather by Douglas Gregor · 15 years ago
  41. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  42. 5501636 Add support for finding composite type of twp objective-c pointers by Fariborz Jahanian · 15 years ago
  43. 20093b4 Reimplement reference initialization (C++ [dcl.init.ref]) using the by Douglas Gregor · 15 years ago
  44. eac8139 Look through using declarations when searching for allocation overloads. by Anders Carlsson · 15 years ago
  45. 772fffa Fix for PR5730: make sure to consistently call by Eli Friedman · 15 years ago
  46. 43c79c2 Implemented an implicit conversion from "noreturn" function types (and by Douglas Gregor · 15 years ago
  47. 0cedfbd Patch to allow matching 0 with an objective-c pointer type by Fariborz Jahanian · 15 years ago
  48. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  49. 1f5f3a4 When we're building a CXXExprWithTemporaries, only include those by Douglas Gregor · 15 years ago
  50. 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
  51. 1bcee0a Rip out the last remaining implicit use of OverloadedFunctionDecl in Sema: by John McCall · 15 years ago
  52. 6bc9768 Fix a code gen. crash synthesizing a destructor. Fixes pr5660. by Fariborz Jahanian · 15 years ago
  53. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago
  54. d888962 More work on ScalarExprEmitter::EmitCastExpr: for every cast kind, either by Eli Friedman · 15 years ago
  55. 2afce72 Refactor our handling of expression evaluation contexts, so that Sema by Douglas Gregor · 15 years ago
  56. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  57. 2fe168f Refactor argument collection of constructor calls using the common routine. by Fariborz Jahanian · 15 years ago
  58. 4cd1c70 More cleanup of argument call collection. by Fariborz Jahanian · 15 years ago
  59. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  60. 048f52a Refactor collection of call arguments in common code. by Fariborz Jahanian · 15 years ago
  61. a7605db Un-break instantiation of if statements with conditional variables by Douglas Gregor · 15 years ago
  62. 8cfe5a7 Explicitly track the condition variable within an "if" statement, by Douglas Gregor · 15 years ago
  63. bc0e078 Handle converting member pointers to bool. by Anders Carlsson · 15 years ago
  64. 7edfb69 Do not mark declarations as used when performing overload resolution. Fixes PR5541 by Douglas Gregor · 15 years ago
  65. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  66. 31658df When checking the base object of a member access expression (b.foo, by Douglas Gregor · 15 years ago
  67. e44201a Don't build an explicit conversion to a reference type by Douglas Gregor · 15 years ago
  68. f3c1f0e When we have a non-dependent expression such as by Douglas Gregor · 15 years ago
  69. 498429f Patch to implement new-operators with default args. Fixes pr5547. by Fariborz Jahanian · 15 years ago
  70. 19d7073 ignore parens surounding the type when diagnosing by Fariborz Jahanian · 15 years ago
  71. 05ebda9 This patch fixes a bug in misdiagnosing correct use of pointer to data member. by Fariborz Jahanian · 15 years ago
  72. 7d384dd Split LookupResult into its own header. by John McCall · 15 years ago
  73. 03c5705 Require the object type of a member access expression ("." or "->") to by Douglas Gregor · 15 years ago
  74. a24dc2e Carry lookup configuration throughout lookup on the LookupResult. Give by John McCall · 15 years ago
  75. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  76. a439e6f Repair broken FindCompositePointerType. Correct early termination condition. Get CVR qualifiers from canonical types. Traverse collected qualifiers in reverse order on rebuilding the pointer, so that we don't swap inner and outer qualifiers. That last one fixes PR5509. by Sebastian Redl · 15 years ago
  77. 78f7455 Factor finding a deallocation function for a record type out into a separate function. by Anders Carlsson · 15 years ago
  78. 5072430 If we find a deallocation function in the class scope, but it is a placement function we should not look for a deallocation function in the global scope. by Anders Carlsson · 15 years ago
  79. 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
  80. 0ba63ea Diagnose ambiguity of operator delete and operator delete[]. Sebastian, please review. by Anders Carlsson · 15 years ago
  81. 00b98c2 Improve source-location information for implicitly-generated member call expressions by Douglas Gregor · 15 years ago
  82. a8ce9ec Fix use-after-free bug. by Eli Friedman · 15 years ago
  83. b7a86f5 When we encounter a derived-to-base conversion when performing an by Douglas Gregor · 15 years ago
  84. 4c0cea2 Minor cleanup of my last patch. by Fariborz Jahanian · 15 years ago
  85. 966256a This patch implements Sema for clause 13.3.3.1p4. by Fariborz Jahanian · 15 years ago
  86. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  87. 43d8863 When starting a C++ member access expression, make sure to compute the by Douglas Gregor · 15 years ago
  88. 6f26920 Remove previous patch for pr5296 due to further clarification by Fariborz Jahanian · 15 years ago
  89. 2d1c214 Replace the code that parses member access expressions after "." or by Douglas Gregor · 15 years ago
  90. 02a24ee Use ParseUnqualifiedId when parsing id-expressions. This eliminates by Douglas Gregor · 15 years ago
  91. 7a34314 Within a template, qualified name lookup can refer to a non-dependent type by Douglas Gregor · 15 years ago
  92. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  93. 6c813e1 Generate constructor for value-initialization cases, even if the by Fariborz Jahanian · 15 years ago
  94. ef78ac6 Add 'fixit' hint on mis-use of pointer-to-member binary operators. by Fariborz Jahanian · 15 years ago
  95. 8ce35b0 Remove the Skip parameter from GetTypeForDeclarator and dependents. Take the opportunity to improve an error message and fix PR4498. by Sebastian Redl · 15 years ago
  96. 3eefb1c Fix overload resolution when calling a member template or taking the by Douglas Gregor · 15 years ago
  97. f071e9b Diagnose misuse of '.*' and '->*' operators during parse by Fariborz Jahanian · 15 years ago
  98. 7a1f4cc Fixed a code gen bug (by fixing the AST) involving user-defined by Fariborz Jahanian · 15 years ago
  99. e961afb Refactor our handling of implicit member reference expressions to get most of the logic out of BuildDeclarationNameExpr by Douglas Gregor · 15 years ago
  100. 573d9c3 Don't (directly) call RequireCompleteType with an invalid source location. by Douglas Gregor · 15 years ago