1. 6ed2ef8 add support for initializing static vars with a cast to union (gcc extension) by Nuno Lopes · 16 years ago
  2. eff2cd5 PR2746: Implement GCC cast to union extension by Seo Sanghyeon · 16 years ago
  3. 4bb64e7 Deallocate the BasePaths structure that we allocate for LookupResult. by Douglas Gregor · 16 years ago
  4. 7176fff Initial implementation of member name lookup by Douglas Gregor · 16 years ago
  5. eb11cd0 Refactor name lookup. by Douglas Gregor · 16 years ago
  6. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 16 years ago
  7. fc76761 FunctionDecl::setParams() now uses the allocator associated with ASTContext to allocate the array of ParmVarDecl*'s. by Ted Kremenek · 16 years ago
  8. fa23c1d Implemenent objective-c's NSObject attribute as a way of ddeclaraing c-type by Fariborz Jahanian · 16 years ago
  9. 2839660 PTH: by Ted Kremenek · 16 years ago
  10. ee159c1 Permitting typedefs without a name is a Microsoft/GNU extension by Douglas Gregor · 16 years ago
  11. 5385991 Use the unqualified type for GCCs struct/union cast extension by Anders Carlsson · 16 years ago
  12. 906fed0 Warn when someone tries to pass a variable with a non-POD type to a varargs function/method/block. by Anders Carlsson · 16 years ago
  13. 518fda1 Fix argument-passing bugs in a call to object by Douglas Gregor · 16 years ago
  14. 88b4bf2 Add the proper restrictions on the left-hand argument of a built-in by Douglas Gregor · 16 years ago
  15. e63ef48 Make sure we don't name a constructor or destructor with a qualified by Douglas Gregor · 16 years ago
  16. 482b77d Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak by Douglas Gregor · 16 years ago
  17. d30ef87 Patch by Roman Divacky: by Ted Kremenek · 16 years ago
  18. 4920f1f Implement support for anonymous structs and unions in C. Both C and by Douglas Gregor · 16 years ago
  19. d1fa644 Patch to supprt case of readonly property being by Fariborz Jahanian · 16 years ago
  20. 1a0d31a Properly set the scope of non-fields declared within a struct, union, by Douglas Gregor · 16 years ago
  21. 2726f9a Fix operator precedence. by Sebastian Redl · 16 years ago
  22. 93983f8 Convert property implementation to DeclContext::addDecl(). by Steve Naroff · 16 years ago
  23. de30747 Convert some more actions to smart pointers. by Sebastian Redl · 16 years ago
  24. dcde115 Don't bother setting NextDeclarator for EnumConstantDecls. It isn't used by Douglas Gregor · 16 years ago
  25. 3218c4b When we see a reference to a struct, class, or union like "struct X" by Douglas Gregor · 16 years ago
  26. c9b580a Add some comments to the virtual work. Thanks to Doug Gregor for the review. by Sebastian Redl · 16 years ago
  27. a66793e This patch removes mergeProperties and does the property lookup by Fariborz Jahanian · 16 years ago
  28. 9ba73ad Very basic support for pure virtual functions. by Sebastian Redl · 16 years ago
  29. 6037fcb Replace DeclContext's vector of ScopedDecl pointers with a linked list by Douglas Gregor · 16 years ago
  30. a8cc8ce Make sure that ScopedDecls passed to DeclContext::addDecl are added into their lexical context by Douglas Gregor · 16 years ago
  31. f8d49f6 Provide a new kind of iterator, the specific_decl_iterator, that by Douglas Gregor · 16 years ago
  32. 09c4719 Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). by Steve Naroff · 16 years ago
  33. d043410 Addressed the issue in <rdar://problem/6479085>, where we failed to by Douglas Gregor · 16 years ago
  34. 439c658 Adding support for ObjC methods which have c-style by Fariborz Jahanian · 16 years ago
  35. b3eef68 Revert my previous, failed attempt to pretty-print anonymous struct/union accesses well. Added a FIXME so we know to revisit this later by Douglas Gregor · 16 years ago
  36. 2555351 Remove double-insertion of EnumConstantDecls. Thanks to Zhongxing Xu for pointing this out by Douglas Gregor · 16 years ago
  37. 72de667 Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 16 years ago
  38. 4fb78c6 Move FIXME to a better location. by Steve Naroff · 16 years ago
  39. 92f863b Removed ObjCContainerDecl::getPropertyMethods()...doesn't belong in the AST. by Steve Naroff · 16 years ago
  40. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  41. 305c658 Objc's compatibility-alias semantics and code gen issue fix. by Fariborz Jahanian · 16 years ago
  42. bc468ba Fix PR clang/3291 by Douglas Gregor · 16 years ago
  43. 83233a4 Fix printing of member references to avoid displaying implicitly-generated member references, e.g., for anonymous struct/unions or implicit 'this' in member functions by Douglas Gregor · 16 years ago
  44. 4b1e275 Don't ICE when messaging on 'super' receiver when class by Fariborz Jahanian · 16 years ago
  45. 6b3945f Finished semantic analysis of anonymous unions in C++. by Douglas Gregor · 16 years ago
  46. e21b994 Use DeclContext::getLookupContext wherever necessary to ensure that we look through transparent contexts by Douglas Gregor · 16 years ago
  47. bcbffc4 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 16 years ago
  48. ce35607 Allow Objective-C entities to be declared within a transparent context by Douglas Gregor · 16 years ago
  49. 823c44e - Various comment typo fixes in Sema.h by Chris Lattner · 16 years ago
  50. ead013e it is ok to insert empty source ranges into diagnostics, declare variable in an if. by Chris Lattner · 16 years ago
  51. 7bea766 simplify some code using 'continue' and the new 'isInIdentifierNamespace' predicate. by Chris Lattner · 16 years ago
  52. 4f3b8f8 Minor tweaks to the transparent declcontext patch by Douglas Gregor · 16 years ago
  53. 1a49af9 Add QualifiedDeclRefExpr, which retains additional source-location by Douglas Gregor · 16 years ago
  54. 523aa60 Remainder is only valid on integer vector operands. by Daniel Dunbar · 16 years ago
  55. 69d1d00 Use CheckVectorOperands when % is applied to a vector type. by Daniel Dunbar · 16 years ago
  56. 64b45f7 PODness and Type Traits by Sebastian Redl · 16 years ago
  57. 074149e Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 16 years ago
  58. 562489e Perform default function/array conversion for input arguments to inline asm statements if the input expr can be a memory operand by Anders Carlsson · 16 years ago
  59. f780abc Parser support for C++ using directives, from Piotr Rak by Douglas Gregor · 16 years ago
  60. fc820a4 Remove hasKind(). Use existing getKind(). by Fariborz Jahanian · 16 years ago
  61. 117054a Convert a two more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  62. a4ed0d8 Diagnose declarations that don't declare anything, and fix PR3020. by Sebastian Redl · 16 years ago
  63. 70316a0 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 16 years ago
  64. 2f40270 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 16 years ago
  65. c4b4e7b Keep track of template arguments when we parse them. Right now, we don't actually do anything with the template arguments, but they'll be used to create template declarations by Douglas Gregor · 16 years ago
  66. 61366e9 Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago
  67. 7b0a52f Sema for fastcall/stdcall stuff. Tests will follow. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  68. 5cc3709 Fix misguided type selection by Douglas Gregor · 16 years ago
  69. 6ed40e3 Don't push OverloadedFunctionDecls onto the chain of declarations by Douglas Gregor · 16 years ago
  70. 2a7e58d Add some block-pointer conversions in C++ by Douglas Gregor · 16 years ago
  71. 3fc749d Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  72. 8351da0 Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  73. 27b09ac Support conversion from a null pointer constant o any Objective-C object pointer type. Fixes rdar://problem/6463298 by Douglas Gregor · 16 years ago
  74. 4b07b29 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  75. 804058e Patch to remove bogus warning in case of @dynamic by Fariborz Jahanian · 16 years ago
  76. cfb664c Expr and Stmt must be destroyed with Destroy, not delete. Fixes PR/3245. by Sebastian Redl · 16 years ago
  77. 88a3514 Add support for calls to overloaded member functions. Things to note: by Douglas Gregor · 16 years ago
  78. a89d82c Fix a comment. by Sebastian Redl · 16 years ago
  79. a0fd865 Parser support for C++ try-catch. by Sebastian Redl · 16 years ago
  80. a60528c Convert a few Stmt actions to smart pointers. by Sebastian Redl · 16 years ago
  81. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  82. 4306d3c Finish up saving original parameter type and by Fariborz Jahanian · 16 years ago
  83. fcdbb93 Handle typedefs to VLAs (Emit the size expr when we encounter the typedef by Anders Carlsson · 16 years ago
  84. e6d5a4a Implement checks for bool in increment and decrement. by Sebastian Redl · 16 years ago
  85. 1c0cfd4 Get rid of the old Expr::Evaluate variant. by Anders Carlsson · 16 years ago
  86. c788751 Support more implicit conversions for Objective-C types. Addresses <rdar://problem/6458293>. by Douglas Gregor · 16 years ago
  87. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago
  88. 00165a2 Fix for PR3234 by Anders Carlsson · 16 years ago
  89. dda7889 Add some more implicit conversions for Objective-C++ by Douglas Gregor · 16 years ago
  90. 264c8ed Don't check initializers when there are dependent types or type-dependent expressions involved by Douglas Gregor · 16 years ago
  91. d6fb7ef Ultrasimplistic sketch for the parsing of C++ template-ids. This won't by Douglas Gregor · 16 years ago
  92. efc4c4b Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  93. a1fcbad Clean up the C89/C++ warnings about C99 array features to not by Chris Lattner · 16 years ago
  94. e878eb0 This is valid in C++. void foo() { return foo(); } by Chris Lattner · 16 years ago
  95. 65ce04b Merge function-return.c into function.c by Chris Lattner · 16 years ago
  96. 9103bb2 Delay semantic analysis of the C++ names casts when the subexpression is type-dependent or the destination type is dependent. by Douglas Gregor · 16 years ago
  97. 375d37c Patch to re-implement duplicate ivar checking by Fariborz Jahanian · 16 years ago
  98. a769c00 This patch will build the Records lazily per Steve's comments. by Fariborz Jahanian · 16 years ago
  99. 510ffae Make the injected-class-name of a C++ class a separate RecordDecl from the class itself, with a different scope. This eliminates some ownership issues, so that the RecordDecl only lives in a single context by Douglas Gregor · 16 years ago
  100. 777f07b diagnose C99 6.9.1p5, C arguments in definitions that are lacking by Chris Lattner · 16 years ago