1. a35284b Add partial semantic checking of template arguments that are meant for by Douglas Gregor · 16 years ago
  2. 6ae5e66 Add type-checking and implicit conversions for template parameters of by Douglas Gregor · 16 years ago
  3. 0bfe54f GNU allows structs with flexible array members to be placed inside by Douglas Gregor · 16 years ago
  4. d684b00 Implement parsing, semantic analysis and ASTs for default template by Douglas Gregor · 16 years ago
  5. 5d290d5 Semantic analysis for non-type template parameter declarations. by Douglas Gregor · 16 years ago
  6. 8b64259 Teach the type-id/expression disambiguator about different by Douglas Gregor · 16 years ago
  7. dd0574e Check template template arguments against their corresponding template by Douglas Gregor · 16 years ago
  8. c15cb38 Rudimentary checking of template arguments against their corresponding by Douglas Gregor · 16 years ago
  9. 668bf91 CallExpr now uses ASTContext's allocate to allocate/delete its array of subexpressions. by Ted Kremenek · 16 years ago
  10. fdf5569 When handling "the rest" of a designated array subobject, maybe sure by Douglas Gregor · 16 years ago
  11. 5908e9f Eliminate TemplateArg so that we only have a single kind of by Douglas Gregor · 16 years ago
  12. 55f6b14 Start processing template-ids as types when the template-name refers by Douglas Gregor · 16 years ago
  13. 00e68e2 Update new expression to make use of Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
  14. ab197ba Implement Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
  15. fb7413f Allocate the subexpression array for OberloadExpr from ASTContext's allocator. by Ted Kremenek · 16 years ago
  16. 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 16 years ago
  17. 00d5074 Fix redundant errors with missing default arguments in member declarations. by Sebastian Redl · 16 years ago
  18. 89ef6e0 Fix redundant errors for redefinitions with multiple existing definitions. by Sebastian Redl · 16 years ago
  19. 89941c1 Improve Sema of the cleanup attribute somewhat. by Anders Carlsson · 16 years ago
  20. 7c8bd60 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 16 years ago
  21. 169a266 Use 'Destroy(Context)' instead of 'Context.Deallocate()' (does recursive freeing of memory). by Ted Kremenek · 16 years ago
  22. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
  23. 7878ffd Add negative test cases and fix diagnostics for member pointer dereferencing. by Sebastian Redl · 16 years ago
  24. 2246050 Implement dereferencing of pointers-to-member. by Sebastian Redl · 16 years ago
  25. 4b99bae Clean up an already-fixed FIXME by Douglas Gregor · 16 years ago
  26. ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
  27. 6e94ef5 Move StringLiteral to allocate its internal string data using the allocator in by Ted Kremenek · 16 years ago
  28. 4ce205f Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 16 years ago
  29. 7dda67d Improvements and fixes for name lookup with using directives, from Piotr Rak! by Douglas Gregor · 16 years ago
  30. 0defd76 Remove some non-ASCII in comment. by Sebastian Redl · 16 years ago
  31. eeb15d4 Implement semantic analysis for the GNU flexible array initialization by Douglas Gregor · 16 years ago
  32. 98eb8a7 Add support for blocks with explicit return types. by Mike Stump · 16 years ago
  33. 33b399a Implement taking address of member functions, including overloaded ones. by Sebastian Redl · 16 years ago
  34. d6efafa Improve documentation for Sema::getTypeName. Also, it's return type is by Douglas Gregor · 16 years ago
  35. aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 16 years ago
  36. 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 16 years ago
  37. 818cb9e Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate' as different kind of symbol. by Steve Naroff · 16 years ago
  38. b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 16 years ago
  39. f680a0f Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 16 years ago
  40. 1733001 Fix our semantic analysis of by Douglas Gregor · 16 years ago
  41. fa04764 Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 16 years ago
  42. 48458d2 silence some warnings. by Chris Lattner · 16 years ago
  43. ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
  44. e2c565d When looking for a tag name via unqualified name lookup, only look in by Douglas Gregor · 16 years ago
  45. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
  46. 1931b44 Simplify the way in which we inject the names of tag definitions and by Douglas Gregor · 16 years ago
  47. 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 16 years ago
  48. ff77645 emit diagnostic when casting a ptr to a small int when doing static initialization (addresses Eli's comments I believe) by Nuno Lopes · 16 years ago
  49. 1dfa6e1 fix TryToFixInvalidVariablyModifiedType to reject negative array sizes by Nuno Lopes · 16 years ago
  50. 2b1e003 Steve set me straight on this one. GCC was right, EDG was wrong: the by Douglas Gregor · 16 years ago
  51. d863517 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 16 years ago
  52. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 16 years ago
  53. 8395081 allow cast from array to int to be considered as constant by Nuno Lopes · 16 years ago
  54. f231998 fix PR3459: improve compatibility with gcc when checking for constant exprs by Nuno Lopes · 16 years ago
  55. f6e35d0 Add sema support for the cleanup attribute. by Anders Carlsson · 16 years ago
  56. 734d986 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 16 years ago
  57. b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 16 years ago
  58. b574e56 Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 16 years ago
  59. 930d8b5 Implement and test aggregate initialization in C++. Major changes: by Douglas Gregor · 16 years ago
  60. d7eb846 Switch Type::isAggregateType to use the C++ definition of "aggregate by Douglas Gregor · 16 years ago
  61. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 16 years ago
  62. a9c8780 Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension by Douglas Gregor · 16 years ago
  63. 28372fa diags moved, so these casts are no longer needed. by Chris Lattner · 16 years ago
  64. a518903 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 16 years ago
  65. 3498bdb Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 16 years ago
  66. 0bb7689 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 16 years ago
  67. 5d2ff63 Suppress a warning by Douglas Gregor · 16 years ago
  68. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  69. 68355a5 fix an absolutely inscrutible gcc 4.0 error: by Chris Lattner · 16 years ago
  70. 9e80f72 Better documentation for our initialization checker by Douglas Gregor · 16 years ago
  71. c34ee5e Move InitListChecker out of Sema.h by Douglas Gregor · 16 years ago
  72. 6fbdc6b Eliminate infinite looping in a wacky case with designated initializers. Simplifies (somewhat) the actually checking of the initializer expression following the designators by Douglas Gregor · 16 years ago
  73. 3e8ffd2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 16 years ago
  74. 54f0728 Remove Expr::hasSideEffects. It doesn't work anyway by Douglas Gregor · 16 years ago
  75. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
  76. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  77. b43a50f Name change (isTypeName->getTypeName). by Steve Naroff · 16 years ago
  78. 21593ac Implement pointer to member handling in static_cast. by Sebastian Redl · 16 years ago
  79. 6697312 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 16 years ago
  80. 133147d Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  81. 939837f Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  82. 46157b5 Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. by Ted Kremenek · 16 years ago
  83. c0ac492 Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). by Steve Naroff · 16 years ago
  84. db64728 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 16 years ago
  85. 03eb543 If an input constraint refers to an output constraint, it should have the same constraint info as the output constraint. Fixes PR3417 by Anders Carlsson · 16 years ago
  86. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  87. 5ac8aff Some micro-optimizations for DISABLE_SMART_POINTERS: by Douglas Gregor · 16 years ago
  88. 7216dc9 rename getSpelledCharacterAt to getSpellingOfSingleCharacterNumericConstant, by Chris Lattner · 16 years ago
  89. f20269b Add support for member pointers to const_cast. by Sebastian Redl · 16 years ago
  90. 9e5e4aa Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 16 years ago
  91. 1d24259 PR3269: create an empty InitListExpr as a child for the by Eli Friedman · 16 years ago
  92. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
  93. 13ca96a Fix for PR2100: merge types for variables. by Eli Friedman · 16 years ago
  94. dca2b73 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 16 years ago
  95. da02747 Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 16 years ago
  96. f30208a Add support for declaring pointers to members. by Sebastian Redl · 16 years ago
  97. 31e21e0 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 16 years ago
  98. 694b1e4 fix a fixme, don't leak the expr on error. by Chris Lattner · 16 years ago
  99. 0107292 minor formatting changes, no functionality change. by Chris Lattner · 16 years ago
  100. 91b9f20 Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 16 years ago