1. 84b51d7 Teach libclang to visit the default arguments of template parameters. by Douglas Gregor · 14 years ago
  2. 7e24256 Implement libclang support for using declarations. Clang actually uses by Douglas Gregor · 14 years ago
  3. 98c9d1f Fix IRGen when property-dot syntax used to access by Fariborz Jahanian · 14 years ago
  4. 0ab1e9f Improve libclang indexing support for class template specializations by Douglas Gregor · 14 years ago
  5. 828629b Add test for nothing... i.e., the contents of a USR for using directives by Douglas Gregor · 14 years ago
  6. afac01d Transfer calling-convention attributes down to member function pointers. by Douglas Gregor · 14 years ago
  7. f65086b when emitting an error about a missing } in a compound statement, emit by Chris Lattner · 14 years ago
  8. 0a35bce Implement libclang support for using directives (cursor + visitation + by Douglas Gregor · 14 years ago
  9. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  10. 66e7b68 fix rdar://8360877 a really nasty miscompilation in Boost.Xpressive by Chris Lattner · 14 years ago
  11. 8ea5b9d Improve location information in the representation of namespace by Douglas Gregor · 14 years ago
  12. 6931900 Add libclang support for namespace aliases (visitation + USRs) along by Douglas Gregor · 14 years ago
  13. 56bedef Some support for unicode string constants in wide strings. radar 8360841. by Fariborz Jahanian · 14 years ago
  14. f6c0977 Implement __has_feature(cxx_inline_namespaces) by Sebastian Redl · 14 years ago
  15. 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
  16. 0b36e61 Extend libclang with a new cursor kind that indicates a reference to a by Douglas Gregor · 14 years ago
  17. 74dbe64 Add libclang support for class template partial specializations, by Douglas Gregor · 14 years ago
  18. 39d6f07 Add a libclang cursor kind, visitation support and USR support for C++ by Douglas Gregor · 14 years ago
  19. a427f1d Explicitly handle CXXOperatorCallExpr when building CFGs. We should treat it the same as CallExprs. by Ted Kremenek · 14 years ago
  20. fe72e9c Implement basic support for indexing function templates in by Douglas Gregor · 14 years ago
  21. 6ab55eb improve isHexaLiteral to work with escaped newlines and trigraphs, by Chris Lattner · 14 years ago
  22. 01829d3 libclang indexing support for C++ constructors, destructors, and by Douglas Gregor · 14 years ago
  23. 8fb280c Add a simple test for indexing namespaces by Douglas Gregor · 14 years ago
  24. 4c40d98 Teach IR generation to return 'this' from constructors and destructors by John McCall · 14 years ago
  25. 1baf2f7 Fix a regression that allowed clearly ill formed code. The diagnostic is still by Chandler Carruth · 14 years ago
  26. 5722b14 Revert my lame attempt at appeasing the CFGBuilder by Douglas Gregor · 14 years ago
  27. e17794f When provide code completions for a variadic Objective-C method by Douglas Gregor · 14 years ago
  28. 35fe7ee Teach the CFGBuilder not do die on CXXBindTemporaryExpr, CXXOperatorCallExpr. Fixes a Boost.Graph crasher. by Douglas Gregor · 14 years ago
  29. c238f09 Implement the __has_nothrow trait family, by Steven Watanabe. by Sebastian Redl · 14 years ago
  30. 88e64ca Enable inline namespaces in C++03 as an extension. by Sebastian Redl · 14 years ago
  31. 03b16a7 Add a forgotten place where the enclosing namespace set matters, plus a big testcase for inline namespace fun. by Sebastian Redl · 14 years ago
  32. 4e4d570 Enable inline namespaces in the AST. by Sebastian Redl · 14 years ago
  33. 7e010a0 When instantiating a function type, instantiate the return type before by Douglas Gregor · 14 years ago
  34. 71b87e4 When template substitution into a template parameter reduces the level by Douglas Gregor · 14 years ago
  35. 4599f34 Fix PR8029, a x86-32 ABI regression in introduced in r112211 by Chris Lattner · 14 years ago
  36. d304fe6 add two more use-cases (explicit instantiation) that should pass now by Gabor Greif · 14 years ago
  37. ab297ac fix dual aspect of PR8007, by Gabor Greif · 14 years ago
  38. 75f21af Perform the function-to-pointer adjustment during template argument by Douglas Gregor · 14 years ago
  39. 6216dc0 Adjusted the semantics of assign checking in IdempotentOperationChecker by Tom Care · 14 years ago
  40. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  41. e2248be Fix an corner-case assertion introduced by the refactoring in r112258; by Douglas Gregor · 14 years ago
  42. 6493a4d Now that GCC will have #pragma push/pop (in GCC 4.6), allow the by Douglas Gregor · 14 years ago
  43. 5b6f769 Emulate (some of) Microsoft's looser semantic checking of exception by Douglas Gregor · 14 years ago
  44. a75ec43 In Microsoft compatibility mode, don't parse the exponent as part of by Douglas Gregor · 14 years ago
  45. 5c0ca52 Predeclare class type_info in Microsoft mode, from Francois Pichet! by Douglas Gregor · 14 years ago
  46. df48ddf Add test case from PR6952, which now works (thanks to Gabor). by Douglas Gregor · 14 years ago
  47. 7f6ff02 Add redeclaration checking for static data members and fix a corner by Douglas Gregor · 14 years ago
  48. e425368 Fix some test-breaking that snuck into my previous commit by Sean Hunt · 14 years ago
  49. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  50. aba4808 When providing a code completion for an Objective-C message send, drop by Douglas Gregor · 14 years ago
  51. 0c431c8 Improve code completion for initializer lists in constructors. Instead by Douglas Gregor · 14 years ago
  52. 9720455 Add missing test case for constructor-initializer code completions by Douglas Gregor · 14 years ago
  53. f459beb ObjClang++: Allow declaration of block variable in a collection by Fariborz Jahanian · 14 years ago
  54. 1ef8a2e Add support for Microsoft's __pragma in the preprocessor. by John McCall · 14 years ago
  55. cd05e81 When perform exact-qualifier-match template argument deduction, by John McCall · 14 years ago
  56. 67d22fb If filtering a lookup result leaves it ambiguous, keep the ambiguity by John McCall · 14 years ago
  57. 4d99a3d add another test for PR8007 by Gabor Greif · 14 years ago
  58. d527874 suppress annoying textual repetition as 'aka' by Gabor Greif · 14 years ago
  59. 326c8c7 That's not the right direction to compute notional accessibility in at all. by John McCall · 14 years ago
  60. 8c77bcb When checking access control for an instance member access on by John McCall · 14 years ago
  61. aaafddb check whether sema issues a redefinition error by Gabor Greif · 14 years ago
  62. bb452e9 note to self: save before committing; add PR by Gabor Greif · 14 years ago
  63. 19de06b fix test by applying it in top namespace: PR8007 only showed up this way by Gabor Greif · 14 years ago
  64. 2c1b9c3 Update test case, with comment to later investigate the correct behavior. Now the behavior is at least consistent. by Ted Kremenek · 14 years ago
  65. 47e331e Explicitly handle CXXExprWithTemporaries during CFG construction by just visiting the subexpression. While we don't do anything intelligent right now, this obviates a bogus -Wunreahable-code warning reported in PR 6130. by Ted Kremenek · 14 years ago
  66. 40181c4 fix PR8007 by Gabor Greif · 14 years ago
  67. c620ace reproduction recipe for PR8007, expected to fail for now, review welcome by Gabor Greif · 14 years ago
  68. d078e64 Parser support for inline namespaces by Sebastian Redl · 14 years ago
  69. 9edd4d0 Added checking of (x == x) and (x != x) to IdempotentOperationChecker and updated test cases flagged by it. by Tom Care · 14 years ago
  70. 6d0e6ce Enabled relaxed LiveVariables analysis in the path-sensitive engine to increase the coverage of bugs. Primarily affects IdempotentOperationChecker. by Tom Care · 14 years ago
  71. 5add754 handle :: in selectors in objc++ mode, rdar://8366474 by Chris Lattner · 14 years ago
  72. 520441e Improve wording of diagnostic complaining about a non-void* pointer as the first parameter of operator delete by Douglas Gregor · 14 years ago
  73. 3064ef9 Implement CXCursor support for walking C++ base specifiers. This includes adding the API hooks clang_isVirtualBase() and clang_getCXXAccessSpecifier() to query properties of the base specifier. by Ted Kremenek · 14 years ago
  74. f696152 Implement the "call super" code completion for C++. If the virtual by Douglas Gregor · 14 years ago
  75. 7114cba Continue to instantiate sub-statements in a CompoundStmt as long as by John McCall · 14 years ago
  76. 2ed8f00 Debug info for friends! Patch originally by Alexander Herz. by Devang Patel · 14 years ago
  77. 1a480c4 Suggest "const" and "volatile" code completions after a function by Douglas Gregor · 14 years ago
  78. 265f749 When code-completing inside an Objective-C method, give a slight by Douglas Gregor · 14 years ago
  79. 03d8aec Add a super-cool code completion for send-to-super. When we're typing by Douglas Gregor · 14 years ago
  80. 9c72c60 Propagate whether an id-expression is the immediate argument of by John McCall · 14 years ago
  81. 468e8fb test case for r112238. by Devang Patel · 14 years ago
  82. 34feff6 Fix horrible GRExprEngine bug where switch statements with no 'case:' statements would cause the path to get prematurely aborted. Fixes <rdar://problem/8360854>. by Ted Kremenek · 14 years ago
  83. 2e29a99 add radar # by Chris Lattner · 14 years ago
  84. bbae8b4 fix 2xi16 to pass as i32 instead of <2 x i16>. The former passes in by Chris Lattner · 14 years ago
  85. 0fefa41 vector of long and ulong are also classified as INTEGER in x86-64 abi, by Chris Lattner · 14 years ago
  86. 473f8e7 1 x ulonglong needs to be classified as INTEGER, just like 1 x longlong, by Chris Lattner · 14 years ago
  87. cebc376 ...I forgot to check my new test after adding it, and lo, there's slightly different by John McCall · 14 years ago
  88. 9e46b8c Make sure we clear TypeSpecOwned when setting TypeSpecType to something when by John McCall · 14 years ago
  89. 2d9e21f Tweak the @selector completion to collapse multiple informative and by Douglas Gregor · 14 years ago
  90. 3cdee12 When code-completing a potential call to a C++ non-static member by Douglas Gregor · 14 years ago
  91. e7ab92e Fix miscompilation. The cookie was not used when new'ing arrays with multiple dimensions. by Argyrios Kyrtzidis · 14 years ago
  92. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  93. 9a2d44c More ordering tweaks in this silly, silly test by Douglas Gregor · 14 years ago
  94. 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  95. a8b7a7d tame an assertion, fixing rdar://8357396 by Chris Lattner · 14 years ago
  96. a958422 Tweak test to avoid checking for a specific ordering where none exists by Douglas Gregor · 14 years ago
  97. 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago
  98. e84f9eb With lax vector conversions (the default) make sure we convert between two by Eric Christopher · 14 years ago
  99. 9214819 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  100. 0f93758 Fix typo in error message and testcase. by Eric Christopher · 14 years ago