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