1. 5ce5dab Funnel changes to the ImportedDecls list in the ASTImporter through a by Douglas Gregor · 14 years ago
  2. 974be4d Fix bug I introduced with assinging a temporary to a StringRef. by Ted Kremenek · 14 years ago
  3. a2a9d6e Make the following functions thread-safe but having them return an std::string that is reconstructed by Ted Kremenek · 14 years ago
  4. 36ead2e Implement AST importing and merging for enumeration types and by Douglas Gregor · 14 years ago
  5. 9a66c30 Complain if block-literal expression's parameter name is by Fariborz Jahanian · 14 years ago
  6. f4aed5f (1) Correctly format external Javascript link. by Ted Kremenek · 14 years ago
  7. 2d901df Don't error when setting a sub-structure variable via objc properties by Fariborz Jahanian · 14 years ago
  8. a5c6c58 fix a bug in SourceManager::getInstantiationLocSlowCase, where by Chris Lattner · 14 years ago
  9. 432a889 Patch to fix a warning which exposed a bug in building by Fariborz Jahanian · 14 years ago
  10. 41e79e2 restructure code a bit: there are two potential issues by Chris Lattner · 14 years ago
  11. c1eec89 Fix a refacto that broke the clang-on-clang build. by Anders Carlsson · 14 years ago
  12. 52b2e1e Fixes a rewriter bug rewriting function decl. by Fariborz Jahanian · 14 years ago
  13. b37b648 Improve representation of tag declarations first declared or defined by Douglas Gregor · 14 years ago
  14. 104f45c Start stubbing out more of the covariant thunk support. by Anders Carlsson · 14 years ago
  15. c4875ee Improve documentation for DependentTypeOfExprType, DependentDecltypeType. No functionality change. by Douglas Gregor · 14 years ago
  16. d014542 Simplify incomplete-array merging code in the AST importer, thanks to by Douglas Gregor · 14 years ago
  17. 1bf4024 Fix a latent bug found by Ahmed Charles, where we were calling by Douglas Gregor · 14 years ago
  18. 16b7312 Keep track of whether a final overrider needs a return type adjustment. by Anders Carlsson · 14 years ago
  19. a757582 Move overrider out into a separate struct. by Anders Carlsson · 14 years ago
  20. 13d283d Fix PR6282: the include guard optimization cannot happen if the by Chris Lattner · 14 years ago
  21. 28cbc8b Keep track of the address points for all primary bases, and add the ability to dump multiple address points for a single offset. by Anders Carlsson · 14 years ago
  22. e13ad83 Work around an annoying, non-standard optimization in the glibc by Douglas Gregor · 14 years ago
  23. 9605895 Fix a bug causing an assertion when a covariant return type differed from by John McCall · 14 years ago
  24. a301ac3 Improve a test slightly by Douglas Gregor · 14 years ago
  25. 8591098 In C++, allow builtins to be referred to via qualified name lookup, e.g., by Douglas Gregor · 14 years ago
  26. 57071e2 More work on vtable layout. We can now layout vtables with primary bases. by Anders Carlsson · 14 years ago
  27. 27935ee Waste two bits in every clang::Type so that the type class can be read by John McCall · 14 years ago
  28. 9824142 When dumping vtables, dump whether a virtual member function is pure or not. by Anders Carlsson · 14 years ago
  29. b8358d8 More work on the final overriders. by Anders Carlsson · 14 years ago
  30. 4835fdd Do not ignore anonymous records. by Devang Patel · 14 years ago
  31. 4cb159c Cache new compile unit. by Devang Patel · 14 years ago
  32. 6492200 Two changes to scan-build: by Ted Kremenek · 14 years ago
  33. 1d81ed9 Add comments. by Ted Kremenek · 14 years ago
  34. e72b5dc Handle AST merges of incomplete class types. by Douglas Gregor · 14 years ago
  35. e6bbc01 Implementing unused function warning. by Tanya Lattner · 14 years ago
  36. b84412f Warn about using the new force_align_arg_pointer attribute on a function by Charles Davis · 14 years ago
  37. bab7168 Fixes a rewriting bug where order of constructor expression arguments did not match by Fariborz Jahanian · 14 years ago
  38. 4dffad6 When we have a dependent direct initializer but not a dependent by Douglas Gregor · 14 years ago
  39. ad7fe86 Fix leak in CXXNewExpr where the SubExprs array would get allocated directly using 'new[]' instead of the allocator associated with ASTContext. by Ted Kremenek · 14 years ago
  40. 05efad5 Make this test not rely on the system <limits.h>. Hopefully fixes the by John McCall · 14 years ago
  41. e2f769b Fix re-allocation in AttrWithString::ReplaceString() to use the allocator assosciated with ASTContext. by Ted Kremenek · 14 years ago
  42. eb3b324 Allocate the SubExprs array in ObjCMessageExpr using the allocator associated with ASTContext. This fixes yet another leak (<rdar://problem/7639260>). by Ted Kremenek · 14 years ago
  43. bdf73d8 Stub out the final overriders class. by Anders Carlsson · 14 years ago
  44. 9abb273 Use getAs instead of cast/dyn_cast on types. (I'm sure Doug will appreciate this). by Anders Carlsson · 14 years ago
  45. 9a14060 Move two functions to the top. No functionality change. by Anders Carlsson · 14 years ago
  46. 1497bff Uncomment lines I never meant to have left commented in a commit. by Ted Kremenek · 14 years ago
  47. 4800d95 When AST merging for record declarations fails, warn about the by Douglas Gregor · 14 years ago
  48. d42ba8a Add builtins from PR5255. Implementations coming soon. by Eli Friedman · 14 years ago
  49. fb6289a Test case for warnings with carets inside macro instantiations. by John McCall · 14 years ago
  50. bac7271 Add virtual operator= example. by Anders Carlsson · 14 years ago
  51. 848fa64 More vtable layout dumper improvements. Handle destructors, dump the complete function type of the member functions (using PredefinedExpr::ComputeName. by Anders Carlsson · 14 years ago
  52. b203c9e Add missing test cases for AST merging of structures. by Douglas Gregor · 14 years ago
  53. ae24a88 Driver: Fix clang -ccc-no-clang -x c++-header foo.h on Darwin. by Daniel Dunbar · 14 years ago
  54. 822307b Keep track of, and dump, vtable address points. by Anders Carlsson · 14 years ago
  55. 8aa7994 Remove noisy semicolon. by Benjamin Kramer · 14 years ago
  56. 779cf42 Suppress warnings if their instantiation location is in a system header, not by John McCall · 14 years ago
  57. 5c41ee8 Patch by Cristian Draghici: by Ted Kremenek · 14 years ago
  58. 824d7ea Check in the beginnings of my new vtable layout builder idea. by Anders Carlsson · 14 years ago
  59. 020a095 Attempt to always dispose of the CXIndex object in c-index-test. by Ted Kremenek · 14 years ago
  60. 5961611 Use the allocator associated with ASTContext to allocate the args by Ted Kremenek · 14 years ago
  61. 3478eb6 Have ~ASTContext() delete StoredDeclsMap (internal to DeclContext) by by Ted Kremenek · 14 years ago
  62. 3d2c43e Remove use of 'std::string' from Attr objects, using instead a byte by Ted Kremenek · 14 years ago
  63. 6495250 Driver: Add -rewrite-objc, which is an interface to clang -cc1 -rewrite-objc. by Daniel Dunbar · 14 years ago
  64. e9c7b9e Driver: Fix infinite loop and wrong message on invalid -ccc-clang-arch argument. by Daniel Dunbar · 14 years ago
  65. 1e37765 Clean up ownership of 'AttributeList' objects in Parser. Apparently by Ted Kremenek · 14 years ago
  66. 7504239 Strip attributes and 'inline' off the "previous declaration" of a by John McCall · 14 years ago
  67. 2d5b703 Remove another redundant ASTContext parameter by Douglas Gregor · 14 years ago
  68. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 14 years ago
  69. e9ff443 Diagnose when user provided getter is being used as lvalue by Fariborz Jahanian · 14 years ago
  70. 952b017 Eliminate the ASTContext parameter from RecordDecl::getDefinition() by Douglas Gregor · 14 years ago
  71. 298ed87 Allocate 'ObjCMethodList' objects (owned by Sema) using Sema's BumpPtrAllocator. Previously they were not getting freed. Fixes <rdar://problem/7635663>. by Ted Kremenek · 14 years ago
  72. 96a01b4 Implement basic AST merging for classes, structs, and unions in C. by Douglas Gregor · 14 years ago
  73. 263c4de Generate the objc_read_weak API when calling by Fariborz Jahanian · 14 years ago
  74. 9c00be5 Fix a potential null-pointer use, and fix the style of my new function. by Charles Davis · 14 years ago
  75. 5a0164d Add support for the force_align_arg_pointer attribute. This is an x86-specific by Charles Davis · 14 years ago
  76. c0f3df3 hopefully silence a warning on the clang-i386-darwin9 tester. by Chris Lattner · 14 years ago
  77. 9e5d996 Move TypedefDecl importer to match the ordering in DeclNodes. No functionality change. by Douglas Gregor · 14 years ago
  78. b1ffee6 c-index-test: Add "none" filter, useful for performance testing. by Daniel Dunbar · 14 years ago
  79. e61a1d4 Patch to rewrite blocks into unique api names. Fixes radar 7630551 by Fariborz Jahanian · 14 years ago
  80. a404ea6 Implement basic support for merging function declarations across by Douglas Gregor · 14 years ago
  81. 4c863ef Provide rewriting suppport for use of __typeof__ by Fariborz Jahanian · 14 years ago
  82. b2987d1 Switch to using -fsjlj-exceptions instead of hard-coding it. Notably, this fixes by Daniel Dunbar · 14 years ago
  83. 809b9bb Refactor code that generates debug info for variables that has BlocksAttr. by Devang Patel · 14 years ago
  84. 7348288 clang -cc1: Add -fsjlj-exceptions, which requires far too much button pushing. by Daniel Dunbar · 14 years ago
  85. 82fc4bf Implement AST importing and merging for typedefs. As part of this, provide a lame implementation for importing TypeSourceInfos. by Douglas Gregor · 14 years ago
  86. 0f962a8 Teach AST merging that variables with incomplete array types can be by Douglas Gregor · 14 years ago
  87. 6b2accb Improve access control diagnostics. Perform access control on member-pointer by John McCall · 14 years ago
  88. cf98c3f Don't display border around images (in Firefox). by Ted Kremenek · 14 years ago
  89. 0e5675d Convert tabs to spaces. by Ted Kremenek · 14 years ago
  90. dcbcbdc Add comment. by Zhongxing Xu · 14 years ago
  91. ed6ae49 Add missing header file by Douglas Gregor · 14 years ago
  92. 13751e3 Comment out category's property decls. in rewrite. Fixes radar 7630636. by Fariborz Jahanian · 14 years ago
  93. d263e7b Use current location as the location of compiler generated arguments, e.g. self, _cmd etc. by Devang Patel · 14 years ago
  94. 6de8b62 Reverse a partial fix patch for radar 7214820. It broke some code and by Fariborz Jahanian · 14 years ago
  95. 8852373 Implement basic support for importing source locations from one AST by Douglas Gregor · 14 years ago
  96. b24b0f8 Pull header into side column. by Ted Kremenek · 14 years ago
  97. 4bf2405 Increase page width for more modern displays. by Ted Kremenek · 14 years ago
  98. c49d5d5 Tweak CSS for options table. by Ted Kremenek · 14 years ago
  99. c0565f0 Even more menu tweaking... by Ted Kremenek · 14 years ago
  100. 0963d67 More menu tweaking. by Ted Kremenek · 14 years ago