1. 9e80f72 Better documentation for our initialization checker by Douglas Gregor · 15 years ago
  2. c34ee5e Move InitListChecker out of Sema.h by Douglas Gregor · 15 years ago
  3. 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 · 15 years ago
  4. 3e8ffd2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 15 years ago
  5. 54f0728 Remove Expr::hasSideEffects. It doesn't work anyway by Douglas Gregor · 15 years ago
  6. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 15 years ago
  7. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 15 years ago
  8. b43a50f Name change (isTypeName->getTypeName). by Steve Naroff · 15 years ago
  9. 21593ac Implement pointer to member handling in static_cast. by Sebastian Redl · 15 years ago
  10. 6697312 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 15 years ago
  11. 133147d Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 15 years ago
  12. 939837f Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 15 years ago
  13. 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 · 15 years ago
  14. c0ac492 Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). by Steve Naroff · 15 years ago
  15. db64728 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 15 years ago
  16. 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 · 15 years ago
  17. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 15 years ago
  18. 5ac8aff Some micro-optimizations for DISABLE_SMART_POINTERS: by Douglas Gregor · 15 years ago
  19. 7216dc9 rename getSpelledCharacterAt to getSpellingOfSingleCharacterNumericConstant, by Chris Lattner · 15 years ago
  20. f20269b Add support for member pointers to const_cast. by Sebastian Redl · 15 years ago
  21. 9e5e4aa Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 15 years ago
  22. 1d24259 PR3269: create an empty InitListExpr as a child for the by Eli Friedman · 15 years ago
  23. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 15 years ago
  24. 13ca96a Fix for PR2100: merge types for variables. by Eli Friedman · 15 years ago
  25. dca2b73 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 15 years ago
  26. da02747 Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 15 years ago
  27. f30208a Add support for declaring pointers to members. by Sebastian Redl · 15 years ago
  28. 31e21e0 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 15 years ago
  29. 694b1e4 fix a fixme, don't leak the expr on error. by Chris Lattner · 15 years ago
  30. 0107292 minor formatting changes, no functionality change. by Chris Lattner · 15 years ago
  31. 91b9f20 Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 15 years ago
  32. d6f584f More APSInt appeasement by Douglas Gregor · 15 years ago
  33. 3fd56d7 Make sure that all NamedDecls have an identifier namespace. by Douglas Gregor · 15 years ago
  34. 53d3d8e Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 15 years ago
  35. 0804888 Allow subtraction of function pointer types in C, as a GNU extension. Fixes rdar://problem/6520707 by Douglas Gregor · 15 years ago
  36. e3fa2de Make sure all of the isUnsigned flags line up when comparing initializer values, to really really fix PR clang/3377 by Douglas Gregor · 15 years ago
  37. f6c717c Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 15 years ago
  38. be109b3 Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 15 years ago
  39. c983b86 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 15 years ago
  40. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 15 years ago
  41. 53ebff3 inline Sema::getLangOptions, rdar://6515190. This speeds up by Chris Lattner · 15 years ago
  42. 21282df EXTWARNify the warning about unnamed typedefs of enums by Douglas Gregor · 15 years ago
  43. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 15 years ago
  44. 872b9ac Fix Sema::Owned(ExprResult) to not use a ternary operator. Necessary to work around a Visual Studio compiler bug. by Steve Naroff · 15 years ago
  45. e6ea279 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 15 years ago
  46. cf79b01 Don't look up decls with no name (such as parameters and unnamed tagged types), by Chris Lattner · 15 years ago
  47. 6ece14c Convert expressions over to Sebastian's spiffy ASTContext::new() operator. by Steve Naroff · 15 years ago
  48. e91b3bc Provide a placement new taking an ASTContext argument. by Sebastian Redl · 15 years ago
  49. 1833a83 Fix a crash Anders' was seeing due to free'ing an invalid pointer by Chris Lattner · 15 years ago
  50. 9e0b600 Convert more exprs to use ASTContext's Allocator. by Steve Naroff · 15 years ago
  51. d9fca6e Improvements to Sema of asm statements. Fixes <rdar://problem/6156893> by Anders Carlsson · 15 years ago
  52. 0a47393 Allocate expresssions through ASTContext (still more work to do). by Steve Naroff · 15 years ago
  53. 5af2f35 Optimize Declarator to avoid malloc/free traffic for the argument list of a by Chris Lattner · 15 years ago
  54. 40f4e69 Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and document both it and DeclContext::addDecl properly by Douglas Gregor · 15 years ago
  55. 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 · 15 years ago
  56. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 15 years ago
  57. b8a6aca Convert more expression actions to smart pointers. by Sebastian Redl · 15 years ago
  58. acdc33b Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 15 years ago
  59. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 15 years ago
  60. 0eb2330 Convert more expression actions to smart pointers. by Sebastian Redl · 15 years ago
  61. cd965b9 Convert a few expression actions to smart pointers. by Sebastian Redl · 15 years ago
  62. 431e90e Convert ObjC statement actions to smart pointers. by Sebastian Redl · 15 years ago
  63. 3037ed0 Convert asm statement action to smart pointers. by Sebastian Redl · 15 years ago
  64. 4cffe2f Convert more statement actions to smart pointers. by Sebastian Redl · 15 years ago
  65. 6fe7c8a Vector codegen improvements by Nate Begeman · 15 years ago
  66. 59b5da6 Support evaluation of vector constant expressions, and codegen of same. by Nate Begeman · 15 years ago
  67. 353417a Update support for vector component access on ExtVectors. by Nate Begeman · 15 years ago
  68. 334a802 Remove outdated diagnostic. Tests are coming. by Nate Begeman · 15 years ago
  69. 45b050e Change TargetInfo::validateInputConstraint to take begin/end name iterators instead of the number of outputs. No functionality change. by Anders Carlsson · 15 years ago
  70. 9bae5e7 Diagnose when method parameter is an object. by Fariborz Jahanian · 15 years ago
  71. 8158f69 Warn about typedefs of enums without any declarator name. Fixes rdar://problem/6503878 by Douglas Gregor · 15 years ago
  72. 69d993a PODify LookupResult, for a measly 1% speedup on Cocoa.h. by Douglas Gregor · 15 years ago
  73. 0b7a158 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 15 years ago
  74. f05b152 Convert some more statement actions to smart pointers. by Sebastian Redl · 15 years ago
  75. ebff1fe Don't ICE (issue diagnostics) when receiver is a non-objc type. by Fariborz Jahanian · 15 years ago
  76. c55a240 Don't ICE on user redeclaration of objc's built-in types. by Fariborz Jahanian · 15 years ago
  77. 95d58f3 silence release-assert warning. by Chris Lattner · 15 years ago
  78. 66b947f Fix <rdar://problem/6502934>. We were creating an ImplicitCastExpr by Douglas Gregor · 15 years ago
  79. bbee00b minor cleanups to StringLiteralParser: no need to pass target info by Chris Lattner · 15 years ago
  80. 506ae41 Part one of handling C++ functional casts. This handles semantic by Douglas Gregor · 15 years ago
  81. dce5e2c Use a single function for doing vararg argument promotion. Also, make sure to do the promotion before checking the type - fixes PR3340. by Anders Carlsson · 15 years ago
  82. 0c21e84 rename PP::getPhysicalCharacterAt -> PP::getSpelledCharacterAt. by Chris Lattner · 15 years ago
  83. d5ed8c3 Extract code dealing with typedef declarators into a separate function. by Zhongxing Xu · 15 years ago
  84. cb8f4f1 Extract code dealing with variable declarator into a separate function. by Zhongxing Xu · 15 years ago
  85. 416fcaf Extract code dealing with declarators of function type into a separate function by Zhongxing Xu · 15 years ago
  86. 4dc6b1c Improve diagnostics for ambiguous name lookup results by Douglas Gregor · 15 years ago
  87. 13fd416 PR3330: given an enum like this: by Chris Lattner · 15 years ago
  88. f185319 Fix some unused variable, control reaches end of non-void function, by Daniel Dunbar · 15 years ago
  89. 6ed2ef8 add support for initializing static vars with a cast to union (gcc extension) by Nuno Lopes · 15 years ago
  90. eff2cd5 PR2746: Implement GCC cast to union extension by Seo Sanghyeon · 15 years ago
  91. 4bb64e7 Deallocate the BasePaths structure that we allocate for LookupResult. by Douglas Gregor · 15 years ago
  92. 7176fff Initial implementation of member name lookup by Douglas Gregor · 15 years ago
  93. eb11cd0 Refactor name lookup. by Douglas Gregor · 15 years ago
  94. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 15 years ago
  95. fc76761 FunctionDecl::setParams() now uses the allocator associated with ASTContext to allocate the array of ParmVarDecl*'s. by Ted Kremenek · 15 years ago
  96. fa23c1d Implemenent objective-c's NSObject attribute as a way of ddeclaraing c-type by Fariborz Jahanian · 15 years ago
  97. 2839660 PTH: by Ted Kremenek · 15 years ago
  98. ee159c1 Permitting typedefs without a name is a Microsoft/GNU extension by Douglas Gregor · 15 years ago
  99. 5385991 Use the unqualified type for GCCs struct/union cast extension by Anders Carlsson · 15 years ago
  100. 906fed0 Warn when someone tries to pass a variable with a non-POD type to a varargs function/method/block. by Anders Carlsson · 15 years ago