1. adaaad3 Refine the type of the first parameter to block invoke functions. by Mike Stump · 15 years ago
  2. 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
  3. dd62b15 Parse a simple-template-id following a '~' when calling a destructor, e.g., by Douglas Gregor · 15 years ago
  4. fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
  5. 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
  6. 45475c6 Update NamedDecl::getName() to work for empty names. by Daniel Dunbar · 15 years ago
  7. d0c10e2 Add ObjCImplementationDecl::getName() for consistency, with FIXME. by Daniel Dunbar · 15 years ago
  8. b409e2d Add FIXME calling for rename of NamedDecl::getNameAsString. by Daniel Dunbar · 15 years ago
  9. f67cea8 Fix tyop noticed by Sean Hunt. by Anders Carlsson · 15 years ago
  10. 01eb9b9 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 15 years ago
  11. b5217ef Add ObjCCategoryImplDecl::getName() -> StringRef, and a FIXME. by Daniel Dunbar · 15 years ago
  12. 4e0e2f1 non-POD members => make it a class (also silences MSVC warnings) by Benjamin Kramer · 15 years ago
  13. 82debc7 Add some more cast kinds. by Anders Carlsson · 15 years ago
  14. 49a832b When performing template-substitution into a type, don't just replace the by John McCall · 15 years ago
  15. ecfa8d2 Add NameDecl::getName() -> StringRef. by Daniel Dunbar · 15 years ago
  16. 51bd803 Clone the full Type hierarchy into the TypeLoc hierarchy. Normalize by John McCall · 15 years ago
  17. bfec576 Add FIXME. by Daniel Dunbar · 15 years ago
  18. eaea925 StringRefize some parts of Diagnostic API. by Daniel Dunbar · 15 years ago
  19. 8b94446 Remove unused BernsteinHash functions. by Daniel Dunbar · 15 years ago
  20. 8d1c9ae Fix a crash with qualified member access into a non-type, from Sean Hunt! by Douglas Gregor · 15 years ago
  21. 83885f7 Add IdentifierTable::CreateIdentifierInfo(StringRef). by Daniel Dunbar · 15 years ago
  22. 12356b1 Fix for PR5190, Credit to Zhanyong Wan. by Edward O'Callaghan · 15 years ago
  23. 67f594c Remove a FIXME that doesn't belong, there are numerous other places that use by Daniel Dunbar · 15 years ago
  24. 7fe6065 Add IdentiferInfo::getNameStr() -> StringRef. by Daniel Dunbar · 15 years ago
  25. 5cf4876 Add 'UseBumpPtrAllocator' flag to ASTUnit::LoadFromPCHFile() to cause the created ASTContext to use by Ted Kremenek · 15 years ago
  26. 61d60ee Merge the "types" and "declarations" blocks in the precompiled header by Douglas Gregor · 15 years ago
  27. 866b274 Patch to clean up and improve visual display of builtin function ambiguity. by Fariborz Jahanian · 15 years ago
  28. bdfe48a While writing source-location entries to a PCH file, go through an by Douglas Gregor · 15 years ago
  29. 4ce74bd Allow TypeLocs to be fully initialized with a single SourceLocation. This by John McCall · 15 years ago
  30. a1ee0c5 Factor out routines to encode/decode DeclaratorInfos and move them into the by John McCall · 15 years ago
  31. d9067b3 Add an accessor to extra the type directly from a DeclaratorInfo by John McCall · 15 years ago
  32. 0246575 Make CIndex and c-index-test a little bit more robust. The only by Douglas Gregor · 15 years ago
  33. 40a5ef9 Provide 'static' version of BinaryOperator::isShiftOp(). by Ted Kremenek · 15 years ago
  34. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  35. 52e7108 Add support for a chain of stat caches in the FileManager, rather than by Douglas Gregor · 15 years ago
  36. 16a8904 Add CK_VectorSplat and use it for casting non-pointer scalars to ExtVectors. by Anders Carlsson · 15 years ago
  37. ebeaf20 Add a ToVoid cast kind and start using it. by Anders Carlsson · 15 years ago
  38. 473e167 retain/release checker: Stop tracking reference counts for any symbols touched by StoreManager::InvalidateRegion(). by Ted Kremenek · 15 years ago
  39. 46a617a Remove the ConstantArrayType subtypes. This information is preserved in the by John McCall · 15 years ago
  40. a6f5642 ConcreteTypeLoc subclasses which call getInnerTypeLoc() should get a by John McCall · 15 years ago
  41. e19944c Make sure temporary files get unlinked. by Steve Naroff · 15 years ago
  42. 5b7d8e2 Implement <rdar://problem/7303432> [Clang/Index] In-memory-style AST generation API (initial API implementation). by Steve Naroff · 15 years ago
  43. 0a897e3 Simplify checking of explicit template specialization/explicit by Douglas Gregor · 15 years ago
  44. 454885e Check the interactions between explicit instantiations and template by Douglas Gregor · 15 years ago
  45. e2d3a3d Diagnose explicit instantiations of function templates and member by Douglas Gregor · 15 years ago
  46. bf7643e More explicit template instantiation. Now we're checking for more by Douglas Gregor · 15 years ago
  47. f2130a6 Complete some unfinished comments. by John McCall · 15 years ago
  48. 34a0447 Better living through metaprogramming. Create a base class which abstracts by John McCall · 15 years ago
  49. 9302da6 CheckTemplateSpecializationScope isn't going to be used for explicit by Douglas Gregor · 15 years ago
  50. 558c032 Additional semantic checking for explicit template instantiations, by Douglas Gregor · 15 years ago
  51. 1028c9f Give explicit and implicit instantiations of static data members of by Douglas Gregor · 15 years ago
  52. 663b5a0 Testing and some minor fixes for explicit template instantiation. by Douglas Gregor · 15 years ago
  53. 31b63be Add support for having different c++ search dirs with -m32 and -m64. So far by Rafael Espindola · 15 years ago
  54. 37c38ec Have the exception specification checkers take partial diagnostics. Use this to merge two diagnostics. by Sebastian Redl · 15 years ago
  55. 491b84c Use partial diagnostics properly in call to RequireCompleteType. Among other things, this means we get a note on the declaration of the incomplete type when it is used in an exception specification. by Sebastian Redl · 15 years ago
  56. 09270cc Now StoreManager::CastRegion() takes a MemRegion, returns a MemRegion. by Zhongxing Xu · 15 years ago
  57. 278b9f0 fix some cfstring related issues: by Chris Lattner · 15 years ago
  58. d0f8bb1 * Remove unused GRState* parameter * Make all Base value the last argument. by Zhongxing Xu · 15 years ago
  59. d9290cb Handle ambiguity of reference initialization. Removes a FIXME. by Fariborz Jahanian · 15 years ago
  60. a786fdb Improve diagnostics when the parser encounters a declarator with an by Douglas Gregor · 15 years ago
  61. 3f09327 Unify our diagnostic printing for errors of the form, "we didn't like by Douglas Gregor · 15 years ago
  62. f66d5cd Turn -Wparentheses on by default. by John McCall · 15 years ago
  63. 096ebfd Diagnose attempts to add default function arguments to a by Douglas Gregor · 15 years ago
  64. fd056bc When explicitly specializing a member that is a template, mark the by Douglas Gregor · 15 years ago
  65. a735b20 Improve the internal representation and semantic analysis of friend by Douglas Gregor · 15 years ago
  66. d6116cc Return the original state by default. by Zhongxing Xu · 15 years ago
  67. bc8d42c make the diagnostic in the 'unused result' warning more precise by Chris Lattner · 15 years ago
  68. 798d2ca Add two utility methods. by Zhongxing Xu · 15 years ago
  69. 4e3c1f7 Add an initial implementation of EnterStackFrame() to the StoreManager. by Zhongxing Xu · 15 years ago
  70. 5a881bb Implement -Wparentheses: warn about using assignments in contexts that require by John McCall · 15 years ago
  71. ee82d9b Use a BumpPtrAllocator to allocate all aspects of CFG, including CFGBlocks, successor and predecessor vectors, etc. by Ted Kremenek · 15 years ago
  72. 620d57a Fixup windows include paths. Patch by John Thompson. by Mike Stump · 15 years ago
  73. b3ae4fc Diagnose the declaration of explicit specializations after an implicit by Douglas Gregor · 15 years ago
  74. 2ebe7eb Handle built-in unary operators when reporting ambiguities. by Fariborz Jahanian · 15 years ago
  75. 87342dc Allow BumpVectorContext to conditionally own the underlying BumpPtrAllocator. by Ted Kremenek · 15 years ago
  76. f4e462c Use CanQualType (instead of QualType) to store collection of visible by Fariborz Jahanian · 15 years ago
  77. 27687cf If built-in operators could not be selected because of ambiguity in by Fariborz Jahanian · 15 years ago
  78. dced226 Test exception spec compatibility on return type and parameters. by Sebastian Redl · 15 years ago
  79. 2c7588f Implement the core checking for compatible exception specifications in assignment and initialization. by Sebastian Redl · 15 years ago
  80. 6e24726 Qualified lookup through using declarations. Diagnose a new type of ambiguity. by John McCall · 15 years ago
  81. 8c8d919 Add CheckCallReturnType and start using it for regular call expressions. This will improve error messages. For by Anders Carlsson · 15 years ago
  82. ec05766 Efficiency refinements. by Mike Stump · 15 years ago
  83. 38ee4e0 Passing const Triple& is sufficient for AddDefaultSystemIncludePaths() by Axel Naumann · 15 years ago
  84. ad3607d Produce good looking diagnostics on ambiguous built-in operators. by Fariborz Jahanian · 15 years ago
  85. 8288768 Remove unused code. by Zhongxing Xu · 15 years ago
  86. 16a5eac Improve on reporting ambiguity involving built-in candidates. by Fariborz Jahanian · 15 years ago
  87. 43d8176 Set up include paths for VC++ and Cygwin headers, along with the by Mike Stump · 15 years ago
  88. b79fe2d This fixes support for complex literals, reworked to avoid a goto, and by Mike Stump · 15 years ago
  89. 0c728f1 Fix up error reporting when object cannot be constructed by Fariborz Jahanian · 15 years ago
  90. ece8e71 Add code completion support for ObjC property declarations/attributes. by Steve Naroff · 15 years ago
  91. b5352cf Implement support for -Wunused-variable, from Oscar Bonilla! by Douglas Gregor · 15 years ago
  92. b46f57d Fix an assertion in the XML output, from Olaf Krzikalla! by Douglas Gregor · 15 years ago
  93. f6b1185 Improve checking for specializations of member classes of class by Douglas Gregor · 15 years ago
  94. 251b4ff For instantiations of static data members of class templates, keep by Douglas Gregor · 15 years ago
  95. 44e368b Compress storage for MemberSpecializationInfo into a single by Douglas Gregor · 15 years ago
  96. 2db3232 Keep track of whether a member function instantiated from a member by Douglas Gregor · 15 years ago
  97. e3af023 Refactoring around friend class templates. Better error message for friend enums. by John McCall · 15 years ago
  98. 1fef4e6 Type checking for specializations of member functions of class by Douglas Gregor · 15 years ago
  99. 0351a1e Fixes problem in finding visible convertion functions of a class by Fariborz Jahanian · 15 years ago
  100. 0a40747 Diagnose explicit instantiations and specializations that occur in class scope by Douglas Gregor · 15 years ago