1. 3eafbb8 When we perform a lookup for a dependent name that is a member of an by Douglas Gregor · 13 years ago
  2. 5e1cdac Rename TagDecl::isDefinition -> isCompleteDefinition by John McCall · 13 years ago
  3. b001de7 Support for C1x _Atomic specifier (see testcase). This is primarily being committed at the moment to help support C++0x <atomic>, but it should be a solid base for implementing the full specification of C1x _Atomic. by Eli Friedman · 13 years ago
  4. d120596 Added CXAvailability_NotAccessible to indicate that a declaration is available, but not accessible from the current code completion context. by Erik Verbruggen · 13 years ago
  5. 82340e8 Fix Sema::CorrectTypo to ignore found but unresolved symbols by Kaelyn Uhrain · 13 years ago
  6. 8697d30 objective-c: this patch (re)introduces objective-c's default property by Fariborz Jahanian · 13 years ago
  7. 85ea7aa Declare and define implicit move constructor and assignment operator. by Sebastian Redl · 13 years ago
  8. 95ed778 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 13 years ago
  9. f0c1d8f Improve overloaded function handling in the typo correction code. by Kaelyn Uhrain · 13 years ago
  10. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  11. b5f6547 Use the new llvm::TinyPtrVector class, which implements exactly what by Chris Lattner · 13 years ago
  12. 98a5403 Fix a bug where a local variable named 'self' is causing by Fariborz Jahanian · 13 years ago
  13. 701d1e7 Fix typo correction crash on overloaded functions, pr10283. by Hans Wennborg · 13 years ago
  14. c5bb9d4 Initialize member. by Benjamin Kramer · 13 years ago
  15. 07f4a06 When adding boolean keywords for typo correction, add either "bool" or by Douglas Gregor · 13 years ago
  16. 5562053 Fix non-determinism in selecting between equal-length names which refer by Chandler Carruth · 13 years ago
  17. 9af7e8e Fix an invalid use of ::back() on an newly emptied vector. Also tighten by Chandler Carruth · 13 years ago
  18. 2ecc28a Dynamically allocate the StringMaps used in typo correction so that we by Douglas Gregor · 13 years ago
  19. d8bba9c Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 13 years ago
  20. e458fda Fix unused label warning. by Jay Foad · 13 years ago
  21. c39b6bc This patch started as an attempt to fix up the horrid naming by Sean Hunt · 13 years ago
  22. 4cc12c6 Clean up the heart of the caching code and miss fewer edge cases. by Sean Hunt · 13 years ago
  23. ab183df Fix a think-o that amazingly didn't show up until I started writing by Sean Hunt · 13 years ago
  24. 431a1cb Actually, you know, fix the problem. by Sean Hunt · 13 years ago
  25. 4dba7b56 Avoid making assumption that this is either a CXXMethodDecl or a by Sean Hunt · 13 years ago
  26. 661c67a Attempt to reapply this patch for caching copy assignment operator by Sean Hunt · 13 years ago
  27. 3bde0ce This change is breaking selfhost. Revert it until I have more time to study it. by Sean Hunt · 13 years ago
  28. 53e669f Implement caching of copy assignment operator lookup. by Sean Hunt · 13 years ago
  29. c530d17 Implement caching for copy constructors in similar situations. by Sean Hunt · 13 years ago
  30. b320e0c Implement caching of default constructors on the resolution table. This by Sean Hunt · 13 years ago
  31. 3054358 Catch the memory leak in a bucket by Sean Hunt · 13 years ago
  32. 308742c Reimplement r132572 on top of a FoldingSet, thus hopefully solving both by Sean Hunt · 13 years ago
  33. c5c9b53 Revert r132572 to figure out why it broke selfhost and clean it up as by Sean Hunt · 13 years ago
  34. 8fd7722 Begin implementing a cache of special member lookups. Currently only by Sean Hunt · 13 years ago
  35. cdee3fe Implement implicit deletion of default constructors. by Sean Hunt · 14 years ago
  36. 37b8c9e Clean up trivial default constructors now. by Sean Hunt · 14 years ago
  37. 7193b3e Don't abuse reinterpret cast to do something the API of PointerUnion by Chandler Carruth · 14 years ago
  38. f1cc1d0 Like the coding standards say, do not use "using namespace std". by Jay Foad · 14 years ago
  39. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 14 years ago
  40. 42151d5 From Vassil Vassilev: Give external source's last resort lookup a chance, even if an identifier could resolve to a builtin. by Axel Naumann · 14 years ago
  41. f25760e Objective-C++: The global namespace is an associated namespace of an by Douglas Gregor · 14 years ago
  42. 8b5b409 Reinstate r127112, "Propagate new-style exception spec information to ExtProtoInfo.", this time with the missing header. by Sebastian Redl · 14 years ago
  43. 708a866 Revert r127112, "Propagate new-style exception spec information to ExtProtoInfo." by NAKAMURA Takumi · 14 years ago
  44. 06bfa84 Propagate new-style exception spec information to ExtProtoInfo. by Sebastian Redl · 14 years ago
  45. 6784304 Fixed LabelDecl source range and cleaned creation code. by Abramo Bagnara · 14 years ago
  46. 203548b Fixed source range for LabelDecl. by Abramo Bagnara · 14 years ago
  47. f8291a1 From Vassil Vassilev: by Axel Naumann · 14 years ago
  48. aef05d7 Use PointerUnion::getAddrOf instead of messing with PointerUnion & reinterpret_cast. by Argyrios Kyrtzidis · 14 years ago
  49. febb5b8 fix rdar://9024687, a crash on invalid that we used to silently ignore. by Chris Lattner · 14 years ago
  50. 4ae493c implement basic support for __label__. I wouldn't be shocked if there are by Chris Lattner · 14 years ago
  51. 337e550 Switch labels over to using normal name lookup, instead of their by Chris Lattner · 14 years ago
  52. d98abd8 When searching for visible declarations (e.g., for code completion), by Douglas Gregor · 14 years ago
  53. dfbb02a Fix whitespace. by NAKAMURA Takumi · 14 years ago
  54. 0099530 7bit-ize. by NAKAMURA Takumi · 14 years ago
  55. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 14 years ago
  56. 6b9109e When we attempt to create a built-in that involves a library type we by Douglas Gregor · 14 years ago
  57. 8595a0c Remove obsolete comments. by Francois Pichet · 14 years ago
  58. e23cf43 Restore r121752 without modification. by John McCall · 14 years ago
  59. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 14 years ago
  60. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 14 years ago
  61. 70c2335 Don't walk the translation unit context to produce protocol names when by Douglas Gregor · 14 years ago
  62. fce5656 Do not change the size of LookupResult::Filter based on the NDEBUG by Douglas Gregor · 14 years ago
  63. 67aba81 Such function decls,as objc's objc_msgSend, builtins in by Fariborz Jahanian · 14 years ago
  64. ba8bda0 Restore patch reversed in r118475. Fixes // rdar://8632525 by Fariborz Jahanian · 14 years ago
  65. 7a054b1 Fix memory leak of IdentifierIterator object. by Ted Kremenek · 14 years ago
  66. ca45da0 Teach code completion to provide property results when the property by Douglas Gregor · 14 years ago
  67. 78f5911 When doing name lookup for members don't look into global/namespace scope. by Argyrios Kyrtzidis · 14 years ago
  68. 157a3ff Remove redundant test by Douglas Gregor · 14 years ago
  69. 53e4b55 Teach typo correction not to return the same keyword that matches a by Douglas Gregor · 14 years ago
  70. 77a1a88 C++ [basic.scope.hiding] allows an ordinary name to hide a non-tag by Douglas Gregor · 14 years ago
  71. f17b58c In the presence of using declarations, we can find the same class by Douglas Gregor · 14 years ago
  72. 9a632ea Fix handling of property and ivar lookup in typo correction; the two by Douglas Gregor · 14 years ago
  73. 3eedbb0 Introduce a simple cache for unqualified typo corrections, so that we by Douglas Gregor · 14 years ago
  74. f98402d Eliminate another ordering dependency in typo correction. Re-enable typo.m, which seems to be working properly. by Douglas Gregor · 14 years ago
  75. a119477 Provide an upper bound to the edit-distance algorithm when performing by Douglas Gregor · 14 years ago
  76. 362a8f2 Improve the performance of typo correction, by using a simple by Douglas Gregor · 14 years ago
  77. 6eaac8b When performing typo correction, keep track of whether the last lookup by Douglas Gregor · 14 years ago
  78. 7b824e8 When we're in the context of an Objective-C message send's receiver, by Douglas Gregor · 14 years ago
  79. 95f4292 When performing typo correction, look through the set of known by Douglas Gregor · 14 years ago
  80. e24b575 Tweak the typo-correction implementation to determine corrections by Douglas Gregor · 14 years ago
  81. 24dce6e zap more dead code. by Chris Lattner · 14 years ago
  82. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  83. 410c4f2 Make inline namespace not be transparent after all. The concept simply doesn't fit. Instead, special-case the few places where transparent contexts have the desired behavior for inline namespaces. Fixes a redeclaration issue in inline namespaces. by Sebastian Redl · 14 years ago
  84. 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
  85. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  86. 781472f Split FunctionScopeInfo and BlockScopeInfo into their own header. by John McCall · 14 years ago
  87. 50df6ae Remove the DenseSet dependency from Sema.h. by John McCall · 14 years ago
  88. 2a7fb27 Move more stuff out of Sema.h. by John McCall · 14 years ago
  89. 5f1e094 More header elimination. The goal of all this is to allow Parser to by John McCall · 14 years ago
  90. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  91. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  92. 8071e42 Extend the code-completion caching infrastructure to include global by Douglas Gregor · 14 years ago
  93. e737f50 Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 14 years ago
  94. b3b50a8 Don't try to implicitly declare special members of an invalid class. by John McCall · 14 years ago
  95. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  96. 7f1c547 If name lookup finds different type declarations in different scopes by Douglas Gregor · 14 years ago
  97. a0068fc Introduce -f{no-}spell-checking options to enable/disable by Douglas Gregor · 14 years ago
  98. 1827403 Lazily declare default constructors. We now delay the construction of by Douglas Gregor · 14 years ago
  99. 2258431 Lazily declare implicit copy constructors. by Douglas Gregor · 14 years ago
  100. e5eee5a Introduce a new routine, LookupConstructors(), and use it for all by Douglas Gregor · 14 years ago