1. cf1b9c7 Referenced instatiated default constructors must be defined. Fixed pr4853. by Fariborz Jahanian · 15 years ago
  2. 2dd078a Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  3. 6c35415 Added a FIXME to the test case. by Fariborz Jahanian · 15 years ago
  4. c186b8f Fix an assertion when initializing a union using a member initializer. (We weren't casting from the union type to the initializer type correctly). by Anders Carlsson · 15 years ago
  5. 9ab605a Changed abi mode for these test which are dereferencing an interface pointer. by Fariborz Jahanian · 15 years ago
  6. a0d4b63 Fix a crash when referencing static data members. by Anders Carlsson · 15 years ago
  7. 82b9fb8 Borrow a friend class's previous declaration's access specifier regardless of by John McCall · 15 years ago
  8. f4b5f5c Fix a codegen crash when a class template has a constructor that does member initialization of an anonymous union. by Anders Carlsson · 15 years ago
  9. d0eb3b9 Packed unions should be packed. Fixes an assert Daniel reported. by Anders Carlsson · 15 years ago
  10. 636a0ff Allow null initialization of scalara data members by Fariborz Jahanian · 15 years ago
  11. ae44067 Add a few more typename-specifier tests that involve simple-template-ids in the nested-name-specifier by Douglas Gregor · 15 years ago
  12. 6946baf When parsing typename specifiers (with either the identifier or by Douglas Gregor · 15 years ago
  13. 2465047 Implement: <rdar://problem/6337100> CWE-338: Use of cryptographically weak prng by Ted Kremenek · 15 years ago
  14. 5348932 When adding a friend class declaration to the lookup tables, use the access specifier by John McCall · 15 years ago
  15. 1a26c27 Fix a little crasher in friend decls. Thanks again to Eli for finding this. by John McCall · 15 years ago
  16. d7eff68 Ensure that the tag decls of friend decls aren't added to the friending class's by John McCall · 15 years ago
  17. 7f89047 Test for my last patch. by Fariborz Jahanian · 15 years ago
  18. 74be00b Testcase for recent checkin. by Mike Stump · 15 years ago
  19. faf8664 Handle member expressions that return references correctly. by Anders Carlsson · 15 years ago
  20. 72f6d67 In CXXBaseOrMemberInitializer, don't confuse CtorTocall with by Douglas Gregor · 15 years ago
  21. cb3c308 Use the correct cast kinds for bit casts and function to pointer decay. Fixes PR4827. by Anders Carlsson · 15 years ago
  22. 174754c We can generate constructors/destructors with base classes and non-trivial fields just fine now. by Anders Carlsson · 15 years ago
  23. cc58eae Add test case from <rdar://problem/7184450>. by Ted Kremenek · 15 years ago
  24. 44c7384 Implement proper substitution for OverloadedFunctionDecls, but substituting each of the functions in the overload set by Douglas Gregor · 15 years ago
  25. d2e1eb0 Fixed a property getter ir-gen crash. by Fariborz Jahanian · 15 years ago
  26. 8f1d89e Fix a crasher involving template instantiation of non-dependent by Douglas Gregor · 15 years ago
  27. 5915fbf Add driver support for -emit-ast and AST compilation steps. by Daniel Dunbar · 15 years ago
  28. c4c65f2 Move C++ test over to CodeGenCXX, since it requires CodeGen to reproduce by Douglas Gregor · 15 years ago
  29. cdc83c7 Don't assume that a base is always a RecordType, it can also be a TemplateSpecializationType. Also, make sure to get the instantiated union member. by Anders Carlsson · 15 years ago
  30. 9988d5d Handle member initializers that point to fields in anonymous structs. by Anders Carlsson · 15 years ago
  31. d8b285f Don't assert when instantiating member references to fields in anonymous structs. by Anders Carlsson · 15 years ago
  32. d613989 PR4836, part 2: CodeGen for __builtin_isnan. by Eli Friedman · 15 years ago
  33. c4bf26f Preliminary AST representation and semantic analysis for by Douglas Gregor · 15 years ago
  34. fe9dcb3 Force triple for this test (non-fragile ABI is default on x86_64-apple-darwin9). by Daniel Dunbar · 15 years ago
  35. ab88d97 Fix bug 4784 and allow friend declarations to properly extend by John McCall · 15 years ago
  36. f328a28 Add parsing for references to member function templates with explicit by Douglas Gregor · 15 years ago
  37. 9ac6f62 PR4836, part 1: add Sema support for __builtin_isnan and friends; they by Eli Friedman · 15 years ago
  38. 017dde5 Implement template instantiation for member operator access. by Douglas Gregor · 15 years ago
  39. a6f0f9d Support explicit C++ member operator syntax, from James Porter! by Douglas Gregor · 15 years ago
  40. 08c3213 Re-implemented generation of objc_memmove_collectable by Fariborz Jahanian · 15 years ago
  41. cbf30b7 Added test cases for presence and absence of __has_feature(objc_nonfragile_abi) with and without -fobjc-nonfragile-abi. by David Chisnall · 15 years ago
  42. 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 15 years ago
  43. a31d5f7 More missing member goodness. by Anders Carlsson · 15 years ago
  44. 639bfc7 Improve missing error messages as suggested by Doug. by Anders Carlsson · 15 years ago
  45. 05180af Use DiagnoseMissingMember for UsingDecls. by Anders Carlsson · 15 years ago
  46. 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
  47. c5573a8 Make instantiating initializers for classes with a dependent base type by Eli Friedman · 15 years ago
  48. e3a97db Make IRGen for initializing a member reference work correctly. by Eli Friedman · 15 years ago
  49. 383d298 Patch to ir-gen user-defined conversions used in expressions [12.3.2-p3] by Fariborz Jahanian · 15 years ago
  50. 0d8df78 Improve instantiation of UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  51. 3197659 Patch for code gen. for c-style cast which ends in by Fariborz Jahanian · 15 years ago
  52. d0b7839 Test case. by John McCall · 15 years ago
  53. 0902531 Instantiate member and base initializers. Patch by Anders Johnsen! (tweaked slightly by me) by Anders Carlsson · 15 years ago
  54. eab975d Fix a couple issues with parsing invalid nested-name-specifiers. by Eli Friedman · 15 years ago
  55. 2a29c4b Fix a last-minute typo and make the test not emit temporaries. by John McCall · 15 years ago
  56. f181d8a Ensure code generation for friend declarations in class templates. by John McCall · 15 years ago
  57. 598da5b CreateDeclRefExprs that point to UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  58. 203cb71 Add another check for UnresolvedUsingDecl. by Anders Carlsson · 15 years ago
  59. 15a24e0 iGenerate vcalls as we build up the methods. WIP. by Mike Stump · 15 years ago
  60. fdc3919 Make sure we actually found a redeclaration before complaining about attributes added to a redeclaration in C++ by Douglas Gregor · 15 years ago
  61. 7fe5d72 path to ir-gen 12.3.1 Conversion by constructor by Fariborz Jahanian · 15 years ago
  62. a5bf7f1 Don't crash when instantiating templates containing anonymous structs/unions by Douglas Gregor · 15 years ago
  63. 3cd4d1e Test instantiation of static data members that live within nested by Douglas Gregor · 15 years ago
  64. 8320ad4 Test instantiations of out-of-line member definitions of nested templates. by Douglas Gregor · 15 years ago
  65. 5ec178f Fix and test template instantiation for nested member templates. by Douglas Gregor · 15 years ago
  66. 357bbd0 Tighten up the conversion from a single-level template argument list by Douglas Gregor · 15 years ago
  67. d6350ae Implement template instantiation for member class templates. by Douglas Gregor · 15 years ago
  68. c761f40 Add uninitialized values test case. by Ted Kremenek · 15 years ago
  69. a834fb4 retain/release checker: [CIContext createCGImage...] and friends returned CF by Ted Kremenek · 15 years ago
  70. 36ef078 Check for UnresolvedUsingDecl when determining if a declaration is a redeclaration or not. by Anders Carlsson · 15 years ago
  71. e588841 test case for my last patch. by Fariborz Jahanian · 15 years ago
  72. d110243 Collect multiple levels of template arguments into a new type, by Douglas Gregor · 15 years ago
  73. faccd72 Fix this for real. by Anders Carlsson · 15 years ago
  74. d841778 Test case for conversion type method call ir-gen. by Fariborz Jahanian · 15 years ago
  75. 83b534c Allow explicit ctors for casts. by Anders Carlsson · 15 years ago
  76. bbf306b When doing overload resolution, expressions that are value dependent but not type dependent and of integral type should not be treated as null pointer constants. by Anders Carlsson · 15 years ago
  77. 0dde18e Instantiate unresolved using declarations. by Anders Carlsson · 15 years ago
  78. 4fc7ab3 ir-gen related patch for type conversion by Fariborz Jahanian · 15 years ago
  79. 02cace7 Omnibus friend decl refactoring. Instead of cloning AST classes for friend by John McCall · 15 years ago
  80. 73b39cf More work on using declarations. by Anders Carlsson · 15 years ago
  81. cf9f921 Many improvements to using declarations. by Anders Carlsson · 15 years ago
  82. 65a81a9 Implement: <rdar://problem/6337132> CWE-273: Failure to Check Whether Privileges by Ted Kremenek · 15 years ago
  83. 8a5ae24 When looking for overloaded member operators, make sure to instantiate by Douglas Gregor · 15 years ago
  84. 9058f90 convert to filecheck and force a triple so that this passes on big by Chris Lattner · 15 years ago
  85. eaba1af Fix for PR4794 (instantiating friend class decl); this version shouldn't by Eli Friedman · 15 years ago
  86. e74b32a Extend the exception spec test even further. Now I need to implement this. by Sebastian Redl · 15 years ago
  87. cc6be89 Remove unnecessary include. by Eli Friedman · 15 years ago
  88. a8880dd Don't create a junk file in the source directory. by Eli Friedman · 15 years ago
  89. 56bea43 Back out bad piece of r80272. Will look at fixing this a different way. by Eli Friedman · 15 years ago
  90. c5c54f2 PR4794: Make instantiating friend class decls not crash. by Eli Friedman · 15 years ago
  91. d60e105 Implement instantiation of the declarations of member function by Douglas Gregor · 15 years ago
  92. 6dd38da When checking whether one declaration context encloses another, make sure to look at the primary contexts. Thanks to Eli for the test case by Douglas Gregor · 15 years ago
  93. 8d4c5ea Don't check member and base initializers if the constructor is dependent. by Anders Carlsson · 15 years ago
  94. e7624a7 Add a BuildCXXTemporaryObjectExpr and use it so default arguments will be instantiated correctly for temporary object expressions. by Anders Carlsson · 15 years ago
  95. bf3fe20 Testcase for an almost recent checkin. by Mike Stump · 15 years ago
  96. 0e88b16 Cleanups. by Mike Stump · 15 years ago
  97. 63bb7c2 Fixup codegen for static dispatch to a virtual function that was by Mike Stump · 15 years ago
  98. bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 15 years ago
  99. 83ddad3 Implement support for C++ direct initializers that involve dependent by Douglas Gregor · 15 years ago
  100. f0070db Implement virtual dispatch. :-) This is self-consistent with clang, by Mike Stump · 15 years ago