1. 52604ab Slight improvement for extern templates, so that an explicit by Douglas Gregor · 15 years ago
  2. ed90c4e Fix PR4878 for real. by Anders Carlsson · 15 years ago
  3. cce6ebc Test commit by Sam Weinig · 15 years ago
  4. 773f397 Instantiate PredefinedExprs correctly. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
  5. 0f72856 Don't check use of a member function declaration used if the member function is virtual and the member reference expression doesn't explicitly qualify it. Fixes PR4878. by Anders Carlsson · 15 years ago
  6. 0aebc81 If a cast expression needs either a conversion function or a constructor to be called, generate implicit child expressions that call them. by Anders Carlsson · 15 years ago
  7. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  8. 3b6afbb Initial stab at implement dependent member references to member by Douglas Gregor · 15 years ago
  9. 3a082d8 Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
  10. 25cae7f Use a separate diagnostic for default function argument expressions. by Anders Carlsson · 15 years ago
  11. a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
  12. c68afe2 Improve template instantiation for member access expressions that by Douglas Gregor · 15 years ago
  13. a38c687 Improved handling for dependent, qualified member access expressions, e.g., by Douglas Gregor · 15 years ago
  14. 16b1037 This patch does the following. by Fariborz Jahanian · 15 years ago
  15. ce8827a It is illegal to derefrercne to an interface in objc's non-fragile ABI. by Fariborz Jahanian · 15 years ago
  16. b633c4e Add a CK_FunctionToPointerDecay cast kind. by Anders Carlsson · 15 years ago
  17. c4bf26f Preliminary AST representation and semantic analysis for by Douglas Gregor · 15 years ago
  18. 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 15 years ago
  19. 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 15 years ago
  20. f328a28 Add parsing for references to member function templates with explicit by Douglas Gregor · 15 years ago
  21. f4d84b6 Improve diagnostics for missing members. This renames the err_typecheck_no_member to err_typecheck_no_member_deprecated. The idea is that err_typecheck_no_member_deprecated should be phased out and any call sites that reference it should call DiagnoseMissingMember instead. by Anders Carlsson · 15 years ago
  22. 3197659 Patch for code gen. for c-style cast which ends in by Fariborz Jahanian · 15 years ago
  23. 598da5b CreateDeclRefExprs that point to UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  24. d6350ae Implement template instantiation for member class templates. by Douglas Gregor · 15 years ago
  25. b790661 Bye-bye old RequireCompleteType. by Anders Carlsson · 15 years ago
  26. d497ba7 Remove the PrintType argument from RequireCompleteType. by Anders Carlsson · 15 years ago
  27. bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 15 years ago
  28. e9f4208 update to CXXFunctionalCastExpr to support ir-gen for by Fariborz Jahanian · 15 years ago
  29. 8f28f99 Add Sema::BuildMemberReferenceExpr and have Sema::ActOnMemberReferenceExpr call it. by Anders Carlsson · 15 years ago
  30. 47e1f7c Source location information for ? and : in a ConditionalOperator, from Enea Zaffanella by Douglas Gregor · 15 years ago
  31. ec77387 Parsing of pseudo-destructors. by Anders Carlsson · 15 years ago
  32. ce3ff2b Clarify the difference between substitution and instantiation by renaming by John McCall · 15 years ago
  33. 56c5e33 Factor building of CXXDefaultArgExpr expressions out into a separate function. by Anders Carlsson · 15 years ago
  34. 9351c17 Basic support for default argument expressions for function templates. by Anders Carlsson · 15 years ago
  35. ed961f9 Factor setting default arguments out into SetParamDefaultArgument. by Anders Carlsson · 15 years ago
  36. 26ba850 Use the right cast kind when comparing null to member pointers. by Anders Carlsson · 15 years ago
  37. 20b3e99 Implement support for equality comparisons (!=, ==) of member by Douglas Gregor · 15 years ago
  38. 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 15 years ago
  39. 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 15 years ago
  40. 9ec22a3 Type of a ?: expression whose either expression is a built-in 'id' by Fariborz Jahanian · 15 years ago
  41. 6365e3e tweak some pointer sema checking stuff (which was added to implement PR4175) to by Chris Lattner · 15 years ago
  42. 6b90686 Implement support for calling member function templates, which involves: by Douglas Gregor · 15 years ago
  43. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
  44. 04e8357 Fix bit-field promotion to be a bit closer to the behavior of gcc. by Eli Friedman · 15 years ago
  45. a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 15 years ago
  46. e866190 Use Sema's LocInfoType to pass and preserve type source info through the Parser. by Argyrios Kyrtzidis · 15 years ago
  47. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
  48. 0f43656 Initial patch to support definitions of id and Class from headers in Objective-C code. by David Chisnall · 15 years ago
  49. ec74c59 Make sure to call MaybeBindToTemporary when creating CallExprs. by Anders Carlsson · 15 years ago
  50. d406bf0 Move builtin call checking out into a separate function, make CheckFunctionCall and CheckBlockCall return bool instead. No intended functionality change. by Anders Carlsson · 15 years ago
  51. 199ea95 Don't perform integer promotions on the operand to a cast; this by Eli Friedman · 15 years ago
  52. f1480ee Make the CXXDefaultArgExpr constructor protected and add a static Create function. by Anders Carlsson · 15 years ago
  53. 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
  54. 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
  55. 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
  56. 8045c73 PR4700 - remove shift by 0 warning by Ryan Flynn · 15 years ago
  57. 0f44b5a Make sure to diagnose use of declarations in the case where we create an implicit CXXThisExpr. by Anders Carlsson · 15 years ago
  58. 112a0a8 Add a CK_ArrayToPointerDecay cast kind. by Anders Carlsson · 15 years ago
  59. 4d8673b Add CK_ToUnion and use it for aggregate expression codegen. by Anders Carlsson · 15 years ago
  60. cdb6197 More CastKind work. by Anders Carlsson · 15 years ago
  61. d043968 PR3333: warn when shifting by invalid amount by Ryan Flynn · 15 years ago
  62. dcee1a1 Implement transformation of nested-name-specifiers within the general by Douglas Gregor · 15 years ago
  63. fe85ced Support nested-name-specifiers for C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  64. ac5fc7c Canonicalize else. by Mike Stump · 15 years ago
  65. 3503d04 Add CK_DerivedToBase and use it PerformObjectMemberConversion. by Anders Carlsson · 15 years ago
  66. cdef2b7 Add a CastKind enum to CastExpr. Right now it's not used for much but it will be :) by Anders Carlsson · 15 years ago
  67. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  68. 96e2fa9 Some refactoring of member access for performace sake. Also added a test case. by Fariborz Jahanian · 15 years ago
  69. f3e53d3 Check accessibility when converting object to the base class. by Fariborz Jahanian · 15 years ago
  70. 98a541e Patch to provide cast of objects in member access by Fariborz Jahanian · 15 years ago
  71. d99cbe6 [llvm up] by Douglas Gregor · 15 years ago
  72. c715e78 Fix <rdar://problem/7100524> regression: "error: incompatible operand types ('void *' and 'NSString *')". by Steve Naroff · 15 years ago
  73. 99b10be Incorporate feedback from Chris (on r76979). by Steve Naroff · 15 years ago
  74. ef0cb8e Make functional-style casts emit correct messages, and fix a crash-on-invalid. by Sebastian Redl · 15 years ago
  75. 1d2154c BlockScopeInfo::hasPrototype was uninitialized. by Daniel Dunbar · 15 years ago
  76. 5692586 Add noreturn support for blocks. by Mike Stump · 15 years ago
  77. 9cc11e7 Implement C++ semantics for C-style and functional-style casts. This regresses Clang extension conversions, like vectors, but allows conversions via constructors and conversion operators. by Sebastian Redl · 16 years ago
  78. 7caa682 Template instantiation for static data members that are defined out-of-line. by Douglas Gregor · 16 years ago
  79. f242b1b Allow front-end 'isa' access on object's of type 'id'. by Steve Naroff · 16 years ago
  80. 4084c30 Remove a bunch of FIXME's related to ObjC type checking. by Steve Naroff · 16 years ago
  81. 6016cb2 Fix test breakage. by Eli Friedman · 16 years ago
  82. de99a45 Slight code reorganization to allow instantiating post-inc/dec. by Eli Friedman · 16 years ago
  83. 8e1fab2 Use isa instead of dyn_cast for conditionals. by Mike Stump · 16 years ago
  84. c6a38a4 Preserve address space information through member accesses, e.g., by Mon P Wang · 16 years ago
  85. 1cb35dd Remove the ObjCCategoryImpls vector from Sema class. by Argyrios Kyrtzidis · 16 years ago
  86. 8701877 Remove Sema::LookupObjCImplementation and replace it with just calling ObjCInterfaceDecl::getImplementation(). by Argyrios Kyrtzidis · 16 years ago
  87. 67ef8ea 5 cleanups to ObjCObjectPointerType work: by Steve Naroff · 16 years ago
  88. ecd1bae Don't add a SourceLocation for 'self' if it does not actually appears in the source code. by Argyrios Kyrtzidis · 16 years ago
  89. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 16 years ago
  90. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 16 years ago
  91. 808825c Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). by Ted Kremenek · 16 years ago
  92. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 16 years ago
  93. 9f8a04f Diagnose ++/-- op on objc pointers in nonfragile abi, instead of crashing. by Fariborz Jahanian · 16 years ago
  94. f495456 Remove ASTContext::isObjCObjectPointerType(). by Steve Naroff · 16 years ago
  95. c70e8d9 Avoid crashing for the enclosed test case. by Steve Naroff · 16 years ago
  96. de2e22d Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective). by Steve Naroff · 16 years ago
  97. 58f9f2c Introduce Type::isAnyPointerType() and convert all clients (suggested by Chris). by Steve Naroff · 16 years ago
  98. 9deaeca Remove superfluous call to getAsPointerType()... by Steve Naroff · 16 years ago
  99. 760e3c4 Sema::CheckAdditionOperands(): Use Type::getPointeeType() and remove PTy and OPT variables. by Steve Naroff · 16 years ago
  100. f8910df by Steve Naroff · 16 years ago