1. 00d5074 Fix redundant errors with missing default arguments in member declarations. by Sebastian Redl · 15 years ago
  2. 89ef6e0 Fix redundant errors for redefinitions with multiple existing definitions. by Sebastian Redl · 15 years ago
  3. 89941c1 Improve Sema of the cleanup attribute somewhat. by Anders Carlsson · 16 years ago
  4. 7c8bd60 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 16 years ago
  5. 169a266 Use 'Destroy(Context)' instead of 'Context.Deallocate()' (does recursive freeing of memory). by Ted Kremenek · 16 years ago
  6. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
  7. 7878ffd Add negative test cases and fix diagnostics for member pointer dereferencing. by Sebastian Redl · 16 years ago
  8. 2246050 Implement dereferencing of pointers-to-member. by Sebastian Redl · 16 years ago
  9. 4b99bae Clean up an already-fixed FIXME by Douglas Gregor · 16 years ago
  10. ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
  11. 6e94ef5 Move StringLiteral to allocate its internal string data using the allocator in by Ted Kremenek · 16 years ago
  12. 4ce205f Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 16 years ago
  13. 7dda67d Improvements and fixes for name lookup with using directives, from Piotr Rak! by Douglas Gregor · 16 years ago
  14. 0defd76 Remove some non-ASCII in comment. by Sebastian Redl · 16 years ago
  15. eeb15d4 Implement semantic analysis for the GNU flexible array initialization by Douglas Gregor · 16 years ago
  16. 98eb8a7 Add support for blocks with explicit return types. by Mike Stump · 16 years ago
  17. 33b399a Implement taking address of member functions, including overloaded ones. by Sebastian Redl · 16 years ago
  18. d6efafa Improve documentation for Sema::getTypeName. Also, it's return type is by Douglas Gregor · 16 years ago
  19. aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 16 years ago
  20. 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 16 years ago
  21. 818cb9e Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate' as different kind of symbol. by Steve Naroff · 16 years ago
  22. b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 16 years ago
  23. f680a0f Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 16 years ago
  24. 1733001 Fix our semantic analysis of by Douglas Gregor · 16 years ago
  25. fa04764 Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 16 years ago
  26. 48458d2 silence some warnings. by Chris Lattner · 16 years ago
  27. ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
  28. e2c565d When looking for a tag name via unqualified name lookup, only look in by Douglas Gregor · 16 years ago
  29. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
  30. 1931b44 Simplify the way in which we inject the names of tag definitions and by Douglas Gregor · 16 years ago
  31. 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 16 years ago
  32. 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
  33. 1dfa6e1 fix TryToFixInvalidVariablyModifiedType to reject negative array sizes by Nuno Lopes · 16 years ago
  34. 2b1e003 Steve set me straight on this one. GCC was right, EDG was wrong: the by Douglas Gregor · 16 years ago
  35. d863517 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 16 years ago
  36. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 16 years ago
  37. 8395081 allow cast from array to int to be considered as constant by Nuno Lopes · 16 years ago
  38. f231998 fix PR3459: improve compatibility with gcc when checking for constant exprs by Nuno Lopes · 16 years ago
  39. f6e35d0 Add sema support for the cleanup attribute. by Anders Carlsson · 16 years ago
  40. 734d986 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 16 years ago
  41. 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
  42. b574e56 Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 16 years ago
  43. 930d8b5 Implement and test aggregate initialization in C++. Major changes: by Douglas Gregor · 16 years ago
  44. d7eb846 Switch Type::isAggregateType to use the C++ definition of "aggregate by Douglas Gregor · 16 years ago
  45. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 16 years ago
  46. 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
  47. 28372fa diags moved, so these casts are no longer needed. by Chris Lattner · 16 years ago
  48. a518903 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 16 years ago
  49. 3498bdb Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 16 years ago
  50. 0bb7689 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 16 years ago
  51. 5d2ff63 Suppress a warning by Douglas Gregor · 16 years ago
  52. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  53. 68355a5 fix an absolutely inscrutible gcc 4.0 error: by Chris Lattner · 16 years ago
  54. 9e80f72 Better documentation for our initialization checker by Douglas Gregor · 16 years ago
  55. c34ee5e Move InitListChecker out of Sema.h by Douglas Gregor · 16 years ago
  56. 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
  57. 3e8ffd2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 16 years ago
  58. 54f0728 Remove Expr::hasSideEffects. It doesn't work anyway by Douglas Gregor · 16 years ago
  59. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
  60. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  61. b43a50f Name change (isTypeName->getTypeName). by Steve Naroff · 16 years ago
  62. 21593ac Implement pointer to member handling in static_cast. by Sebastian Redl · 16 years ago
  63. 6697312 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 16 years ago
  64. 133147d Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  65. 939837f Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  66. 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
  67. c0ac492 Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). by Steve Naroff · 16 years ago
  68. db64728 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 16 years ago
  69. 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
  70. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  71. 5ac8aff Some micro-optimizations for DISABLE_SMART_POINTERS: by Douglas Gregor · 16 years ago
  72. 7216dc9 rename getSpelledCharacterAt to getSpellingOfSingleCharacterNumericConstant, by Chris Lattner · 16 years ago
  73. f20269b Add support for member pointers to const_cast. by Sebastian Redl · 16 years ago
  74. 9e5e4aa Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 16 years ago
  75. 1d24259 PR3269: create an empty InitListExpr as a child for the by Eli Friedman · 16 years ago
  76. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
  77. 13ca96a Fix for PR2100: merge types for variables. by Eli Friedman · 16 years ago
  78. dca2b73 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 16 years ago
  79. da02747 Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 16 years ago
  80. f30208a Add support for declaring pointers to members. by Sebastian Redl · 16 years ago
  81. 31e21e0 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 16 years ago
  82. 694b1e4 fix a fixme, don't leak the expr on error. by Chris Lattner · 16 years ago
  83. 0107292 minor formatting changes, no functionality change. by Chris Lattner · 16 years ago
  84. 91b9f20 Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 16 years ago
  85. d6f584f More APSInt appeasement by Douglas Gregor · 16 years ago
  86. 3fd56d7 Make sure that all NamedDecls have an identifier namespace. by Douglas Gregor · 16 years ago
  87. 53d3d8e Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 16 years ago
  88. 0804888 Allow subtraction of function pointer types in C, as a GNU extension. Fixes rdar://problem/6520707 by Douglas Gregor · 16 years ago
  89. e3fa2de Make sure all of the isUnsigned flags line up when comparing initializer values, to really really fix PR clang/3377 by Douglas Gregor · 16 years ago
  90. f6c717c Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 16 years ago
  91. be109b3 Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 16 years ago
  92. c983b86 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 16 years ago
  93. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  94. 53ebff3 inline Sema::getLangOptions, rdar://6515190. This speeds up by Chris Lattner · 16 years ago
  95. 21282df EXTWARNify the warning about unnamed typedefs of enums by Douglas Gregor · 16 years ago
  96. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  97. 872b9ac Fix Sema::Owned(ExprResult) to not use a ternary operator. Necessary to work around a Visual Studio compiler bug. by Steve Naroff · 16 years ago
  98. e6ea279 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 16 years ago
  99. cf79b01 Don't look up decls with no name (such as parameters and unnamed tagged types), by Chris Lattner · 16 years ago
  100. 6ece14c Convert expressions over to Sebastian's spiffy ASTContext::new() operator. by Steve Naroff · 16 years ago