1. 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
  2. f780abc Parser support for C++ using directives, from Piotr Rak by Douglas Gregor · 16 years ago
  3. fc820a4 Remove hasKind(). Use existing getKind(). by Fariborz Jahanian · 16 years ago
  4. 117054a Convert a two more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  5. a4ed0d8 Diagnose declarations that don't declare anything, and fix PR3020. by Sebastian Redl · 16 years ago
  6. 70316a0 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 16 years ago
  7. 2f40270 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 16 years ago
  8. 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
  9. 61366e9 Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago
  10. 7b0a52f Sema for fastcall/stdcall stuff. Tests will follow. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  11. 5cc3709 Fix misguided type selection by Douglas Gregor · 16 years ago
  12. 6ed40e3 Don't push OverloadedFunctionDecls onto the chain of declarations by Douglas Gregor · 16 years ago
  13. 2a7e58d Add some block-pointer conversions in C++ by Douglas Gregor · 16 years ago
  14. 3fc749d Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  15. 8351da0 Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  16. 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
  17. 4b07b29 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  18. 804058e Patch to remove bogus warning in case of @dynamic by Fariborz Jahanian · 16 years ago
  19. cfb664c Expr and Stmt must be destroyed with Destroy, not delete. Fixes PR/3245. by Sebastian Redl · 16 years ago
  20. 88a3514 Add support for calls to overloaded member functions. Things to note: by Douglas Gregor · 16 years ago
  21. a89d82c Fix a comment. by Sebastian Redl · 16 years ago
  22. a0fd865 Parser support for C++ try-catch. by Sebastian Redl · 16 years ago
  23. a60528c Convert a few Stmt actions to smart pointers. by Sebastian Redl · 16 years ago
  24. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  25. 4306d3c Finish up saving original parameter type and by Fariborz Jahanian · 16 years ago
  26. fcdbb93 Handle typedefs to VLAs (Emit the size expr when we encounter the typedef by Anders Carlsson · 16 years ago
  27. e6d5a4a Implement checks for bool in increment and decrement. by Sebastian Redl · 16 years ago
  28. 1c0cfd4 Get rid of the old Expr::Evaluate variant. by Anders Carlsson · 16 years ago
  29. c788751 Support more implicit conversions for Objective-C types. Addresses <rdar://problem/6458293>. by Douglas Gregor · 16 years ago
  30. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago
  31. 00165a2 Fix for PR3234 by Anders Carlsson · 16 years ago
  32. dda7889 Add some more implicit conversions for Objective-C++ by Douglas Gregor · 16 years ago
  33. 264c8ed Don't check initializers when there are dependent types or type-dependent expressions involved by Douglas Gregor · 16 years ago
  34. d6fb7ef Ultrasimplistic sketch for the parsing of C++ template-ids. This won't by Douglas Gregor · 16 years ago
  35. efc4c4b Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  36. a1fcbad Clean up the C89/C++ warnings about C99 array features to not by Chris Lattner · 16 years ago
  37. e878eb0 This is valid in C++. void foo() { return foo(); } by Chris Lattner · 16 years ago
  38. 65ce04b Merge function-return.c into function.c by Chris Lattner · 16 years ago
  39. 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
  40. 375d37c Patch to re-implement duplicate ivar checking by Fariborz Jahanian · 16 years ago
  41. a769c00 This patch will build the Records lazily per Steve's comments. by Fariborz Jahanian · 16 years ago
  42. 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
  43. 777f07b diagnose C99 6.9.1p5, C arguments in definitions that are lacking by Chris Lattner · 16 years ago
  44. cc98eac Move the other Sema::ActOnLinkageSpec to SemaDeclCXX. by Chris Lattner · 16 years ago
  45. 5a003a4 Move Sema::ActOnLinkageSpec to SemaDeclCXX. by Chris Lattner · 16 years ago
  46. 45579f5 Make sure that enumerators show up within the enumeration declaration. Fixes. PR clang/3220 by Douglas Gregor · 16 years ago
  47. bc1c877 Semantics of @protocol attributes. by Fariborz Jahanian · 16 years ago
  48. 6b6609f remove debug stmt, sorry.. by Nuno Lopes · 16 years ago
  49. 6fea8d2 fix PR 3222: allow one to get the address of a global function in C++ by Nuno Lopes · 16 years ago
  50. f44515a Make linkage-specifications hold on to all of their declarations by Douglas Gregor · 16 years ago
  51. 72b505b Delay parsing of default arguments of member functions until the class by Douglas Gregor · 16 years ago
  52. 82b4e76 Silence a couple more operator precedence warnings; this shouldn't by Eli Friedman · 16 years ago
  53. 105ec4b Patch to check for ObjC's property type. by Fariborz Jahanian · 16 years ago
  54. 3dde5a3 Partial fix for qualified name lookup, such that the lookup of N in by Douglas Gregor · 16 years ago
  55. 3281eff Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  56. 0a59acb Make name lookup when we're inside a declarator's scope, such as ClassName::func, work with the new unqualified name lookup code. Test it with default arguments in out-of-line member definitions by Douglas Gregor · 16 years ago
  57. 584049d Diagnose erroneous uses of out-of-line member definitions and scope by Douglas Gregor · 16 years ago
  58. 03f332a Fix for PR3212: don't descend into C++ operator overloading code for C by Eli Friedman · 16 years ago
  59. 56f20ae Make error handling for va_start a bit more robust. Fixes PR3213. by Eli Friedman · 16 years ago
  60. 9ee92e8 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
  61. 9e7d9de Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  62. 9fbb609 Removed setRecordForDecl. Added a FIXME. by Fariborz Jahanian · 16 years ago
  63. 0874bd3 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
  64. 7df7b6b Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
  65. aaa63a7 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago
  66. 60f8c86 Add storage layout to ObjC classes. by Fariborz Jahanian · 16 years ago
  67. 798d119 Some utilities for using the smart pointers in Actions, especially Sema. Convert a few functions. by Sebastian Redl · 16 years ago
  68. 9d35097 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
  69. b0da923 fix rdar://6097892 - gcc incompat: clang rejects __func__, __FUNCTION__, and __PRETTY_FUNCTION__ outside func by Chris Lattner · 16 years ago
  70. cd08707 Implement rdar://6138816 - [sema] named bitfields cannot have 0 width by Chris Lattner · 16 years ago
  71. c9467cf In C++, set the type of each of the enumerators in an enumeration to by Douglas Gregor · 16 years ago
  72. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  73. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  74. 5b1f3f0 Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point) by Anders Carlsson · 16 years ago
  75. caaf29a Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
  76. 2988205 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
  77. 83f96f6 Some cleanups to the dependent-types commit, as suggested by Sebastian by Douglas Gregor · 16 years ago
  78. 391d895 Patch to allow a getter call using property dot-syntax notation. by Fariborz Jahanian · 16 years ago
  79. fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  80. 6082c62 Sema::ActOnMethodDeclaration(): Make sure we perform the default function/array conversion for parameter types. by Steve Naroff · 16 years ago
  81. ba45da8 Changed 'readonly' 'retain/copy' diagnostics into by Fariborz Jahanian · 16 years ago
  82. 9bfb2a2 Since we do not allow a readonly property to be 'copy'retain', we by Fariborz Jahanian · 16 years ago
  83. f57172b Move Sema::isTemplateParameterDecl to Decl::isTemplateParameter, where it belongs by Douglas Gregor · 16 years ago
  84. e50897a fix 80-col violation. by Zhongxing Xu · 16 years ago
  85. 7fd1df2 Pass the VLA size expr range to the VLA diags by Anders Carlsson · 16 years ago
  86. 96e05bc Improve VLA diagnostics/sema checking. Fixes PR2361 and PR2352. by Anders Carlsson · 16 years ago
  87. 5dd4129 Setters returning a typedef of 'void' should not cause error. by Fariborz Jahanian · 16 years ago
  88. 1ac2bc4 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  89. 196d0ed Improve error reporting of property and setter/getter type mimatches. by Fariborz Jahanian · 16 years ago
  90. ec604c8 Check for correct'void' return type for setter methods. by Fariborz Jahanian · 16 years ago
  91. 9f1e572 Add diagnostics for bitfields. by Anders Carlsson · 16 years ago
  92. a75023d Simplify some diagnostics. by Anders Carlsson · 16 years ago
  93. 77e14bd Changed a 'FIXME' into new comment. Added a test case by Fariborz Jahanian · 16 years ago
  94. 567c8df Patch to diagnose a variety of misuse of property by Fariborz Jahanian · 16 years ago
  95. 5c37de7 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  96. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  97. ae6f6fd This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  98. 8daab97 (instance/class) Method type checking between class and its implementation. by Fariborz Jahanian · 16 years ago
  99. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  100. 49184b2 Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes PR2963 by Anders Carlsson · 16 years ago