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