1. 52ae30c Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 16 years ago
  2. 9fddded 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
  3. 0eab08e diags moved, so these casts are no longer needed. by Chris Lattner · 16 years ago
  4. a4e0498 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 16 years ago
  5. c9e012a Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 16 years ago
  6. 8246276 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 16 years ago
  7. 896f37b Suppress a warning by Douglas Gregor · 16 years ago
  8. 545f39e move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  9. 1aa25a7 fix an absolutely inscrutible gcc 4.0 error: by Chris Lattner · 16 years ago
  10. aaa2096 Better documentation for our initialization checker by Douglas Gregor · 16 years ago
  11. 849afc3 Move InitListChecker out of Sema.h by Douglas Gregor · 16 years ago
  12. 36859eb 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
  13. c349ee2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 16 years ago
  14. 756283b Remove Expr::hasSideEffects. It doesn't work anyway by Douglas Gregor · 16 years ago
  15. 36dd0c5 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
  16. f603b47 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  17. 7b36a1b Name change (isTypeName->getTypeName). by Steve Naroff · 16 years ago
  18. f41a58c Implement pointer to member handling in static_cast. by Sebastian Redl · 16 years ago
  19. b31f294 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 16 years ago
  20. 9844633 Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  21. c8b0d08 Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  22. 88eebed 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
  23. 207b9ec Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). by Steve Naroff · 16 years ago
  24. 04b3f35 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 16 years ago
  25. dd3a4fe 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
  26. 52a425b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  27. 10a18fc Some micro-optimizations for DISABLE_SMART_POINTERS: by Douglas Gregor · 16 years ago
  28. c374f8b rename getSpelledCharacterAt to getSpellingOfSingleCharacterNumericConstant, by Chris Lattner · 16 years ago
  29. 08cdb99 Add support for member pointers to const_cast. by Sebastian Redl · 16 years ago
  30. 8ebd8fb Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 16 years ago
  31. c67f86a PR3269: create an empty InitListExpr as a child for the by Eli Friedman · 16 years ago
  32. ba38756 Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
  33. 4a480d6 Fix for PR2100: merge types for variables. by Eli Friedman · 16 years ago
  34. bc941e1 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 16 years ago
  35. 364a42d Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 16 years ago
  36. 7555503 Add support for declaring pointers to members. by Sebastian Redl · 16 years ago
  37. 8d9f796 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 16 years ago
  38. a78909b fix a fixme, don't leak the expr on error. by Chris Lattner · 16 years ago
  39. 159fe08 minor formatting changes, no functionality change. by Chris Lattner · 16 years ago
  40. 37704be Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 16 years ago
  41. ea0528d More APSInt appeasement by Douglas Gregor · 16 years ago
  42. 4ac887b Make sure that all NamedDecls have an identifier namespace. by Douglas Gregor · 16 years ago
  43. e498e37 Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 16 years ago
  44. f93eda1 Allow subtraction of function pointer types in C, as a GNU extension. Fixes rdar://problem/6520707 by Douglas Gregor · 16 years ago
  45. 6972270 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
  46. 5a203a6 Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 16 years ago
  47. 65075ec Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 16 years ago
  48. b319324 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 16 years ago
  49. 710f6d4 Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  50. 6d89a8a inline Sema::getLangOptions, rdar://6515190. This speeds up by Chris Lattner · 16 years ago
  51. edd94e9 EXTWARNify the warning about unnamed typedefs of enums by Douglas Gregor · 16 years ago
  52. c5a6bdc Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  53. 2795965 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
  54. de93d33 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 16 years ago
  55. 310dea3 Don't look up decls with no name (such as parameters and unnamed tagged types), by Chris Lattner · 16 years ago
  56. 774e415 Convert expressions over to Sebastian's spiffy ASTContext::new() operator. by Steve Naroff · 16 years ago
  57. 7532493 Provide a placement new taking an ASTContext argument. by Sebastian Redl · 16 years ago
  58. 5c6139b Fix a crash Anders' was seeing due to free'ing an invalid pointer by Chris Lattner · 16 years ago
  59. 8b9a98d Convert more exprs to use ASTContext's Allocator. by Steve Naroff · 16 years ago
  60. e7d9270 Improvements to Sema of asm statements. Fixes <rdar://problem/6156893> by Anders Carlsson · 16 years ago
  61. e5f128a Allocate expresssions through ASTContext (still more work to do). by Steve Naroff · 16 years ago
  62. defaf41 Optimize Declarator to avoid malloc/free traffic for the argument list of a by Chris Lattner · 16 years ago
  63. 9ac66d2 Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and document both it and DeclContext::addDecl properly by Douglas Gregor · 16 years ago
  64. f4006be 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
  65. af8ad2b Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  66. 5457c5e Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
  67. 6ec8955 Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 16 years ago
  68. 46fe06e Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  69. 8b76997 Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
  70. cd883f7 Convert a few expression actions to smart pointers. by Sebastian Redl · 16 years ago
  71. b3860a7 Convert ObjC statement actions to smart pointers. by Sebastian Redl · 16 years ago
  72. c6b8633 Convert asm statement action to smart pointers. by Sebastian Redl · 16 years ago
  73. 539eb57 Convert more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  74. 7903d05 Vector codegen improvements by Nate Begeman · 16 years ago
  75. d6d2f77 Support evaluation of vector constant expressions, and codegen of same. by Nate Begeman · 16 years ago
  76. 1486b50 Update support for vector component access on ExtVectors. by Nate Begeman · 16 years ago
  77. 5738547 Remove outdated diagnostic. Tests are coming. by Nate Begeman · 16 years ago
  78. 7b49cec Change TargetInfo::validateInputConstraint to take begin/end name iterators instead of the number of outputs. No functionality change. by Anders Carlsson · 16 years ago
  79. 7b4695f Diagnose when method parameter is an object. by Fariborz Jahanian · 16 years ago
  80. 72de849 Warn about typedefs of enums without any declarator name. Fixes rdar://problem/6503878 by Douglas Gregor · 16 years ago
  81. d07474b PODify LookupResult, for a measly 1% speedup on Cocoa.h. by Douglas Gregor · 16 years ago
  82. 98b2754 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 16 years ago
  83. 19c74d3 Convert some more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  84. 44da7a1 Don't ICE (issue diagnostics) when receiver is a non-objc type. by Fariborz Jahanian · 16 years ago
  85. de93967 Don't ICE on user redeclaration of objc's built-in types. by Fariborz Jahanian · 16 years ago
  86. 50500f6 silence release-assert warning. by Chris Lattner · 16 years ago
  87. 5ac8ffa Fix <rdar://problem/6502934>. We were creating an ImplicitCastExpr by Douglas Gregor · 16 years ago
  88. 9eaf2b7 minor cleanups to StringLiteralParser: no need to pass target info by Chris Lattner · 16 years ago
  89. 861e790 Part one of handling C++ functional casts. This handles semantic by Douglas Gregor · 16 years ago
  90. 4b8e38c 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 · 16 years ago
  91. fd5f143 rename PP::getPhysicalCharacterAt -> PP::getSpelledCharacterAt. by Chris Lattner · 16 years ago
  92. 2b3c3dd Extract code dealing with typedef declarators into a separate function. by Zhongxing Xu · 16 years ago
  93. 511d45b Extract code dealing with variable declarator into a separate function. by Zhongxing Xu · 16 years ago
  94. 7502dec Extract code dealing with declarators of function type into a separate function by Zhongxing Xu · 16 years ago
  95. b9ef055 Improve diagnostics for ambiguous name lookup results by Douglas Gregor · 16 years ago
  96. 8c6dc7a PR3330: given an enum like this: by Chris Lattner · 16 years ago
  97. ddebeca Fix some unused variable, control reaches end of non-void function, by Daniel Dunbar · 16 years ago
  98. 8260d5d add support for initializing static vars with a cast to union (gcc extension) by Nuno Lopes · 16 years ago
  99. 27b3395 PR2746: Implement GCC cast to union extension by Seo Sanghyeon · 16 years ago
  100. 6beddfe Deallocate the BasePaths structure that we allocate for LookupResult. by Douglas Gregor · 16 years ago