1. b1d0422 Fix crash introduced by r83358 where a symbol could be eagerly by Ted Kremenek · 15 years ago
  2. cd8f6ac Fix: <rdar://problem/7275774> Static analyzer warns about NULL pointer when by Ted Kremenek · 15 years ago
  3. 2e9f652 Refactor the c++ include path a bit. by Rafael Espindola · 15 years ago
  4. 979ec2e Set appropriate context for a global variable while emitting debug info. by Devang Patel · 15 years ago
  5. 56fc0d1 Refixed pr5086 by letting Expr::isNullPointerConstant by Fariborz Jahanian · 15 years ago
  6. 8cf7a1a This is slightly contentious, but, if llvm has gone to addressable by Mike Stump · 15 years ago
  7. bd6dbd1 Fix thinko and simplify. by Mike Stump · 15 years ago
  8. fb51ddf Ensure we have atleast 2-byte alignment for member functions. by Mike Stump · 15 years ago
  9. 9a3dcf2 Make sure that c-index-test links as a C++ executable by Douglas Gregor · 15 years ago
  10. 2588830 Make sure that libCIndex links as a C++ library by Douglas Gregor · 15 years ago
  11. 4c83f7c Testcase for recent checkin. by Mike Stump · 15 years ago
  12. f55314d Respect alignments better. by Mike Stump · 15 years ago
  13. f393c3b Fix C90 compile warning about mixed declarations and code. by Eric Christopher · 15 years ago
  14. b106fc6 tweaked my last patch to 1) preserve the protocol in by Fariborz Jahanian · 15 years ago
  15. bc64bb1 remove this test, grepping for define isn't really testing anything. by Chris Lattner · 15 years ago
  16. 445e23e Encode the Clang branch and Subversion revision into a PCH file, and by Douglas Gregor · 15 years ago
  17. 339798e Patch to implement Protocols on class extensions. by Fariborz Jahanian · 15 years ago
  18. b8d1191 Provide a common set of routines in Version.h that return Subversion by Douglas Gregor · 15 years ago
  19. 60b5d8e Pre-commit commit to get URL keyword expansion for Clang version information by Douglas Gregor · 15 years ago
  20. f9adf8f - Fix assert in clang_getCursorDecl (having to do with recently added ObjC_ProtocolRef). by Steve Naroff · 15 years ago
  21. ffbb15e Use new predicates for some type equality tests. by Benjamin Kramer · 15 years ago
  22. 1bb15a9 Add a -nostdclanginc flag to clang-cc that prevents it from searching by Rafael Espindola · 15 years ago
  23. 719aa44 Pass the canonical method decl to GetVtableIndex. Fixes PR5120. by Anders Carlsson · 15 years ago
  24. 375c31c Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 15 years ago
  25. 83ccfc3 Create CXXMemberCallExpr for pointer-to-member calls. by Anders Carlsson · 15 years ago
  26. 26bc220 Ignore No-op casts when evaluating lvalue expressions. Fixes PR5122. by Anders Carlsson · 15 years ago
  27. a024d17 Teach AggExprEmitter about pointers to member functions. by Anders Carlsson · 15 years ago
  28. 2c51f09 Handle base-to-derived casts of member function pointers in CGExprConstant.cpp by Anders Carlsson · 15 years ago
  29. f57b4e4 Handle members to function pointers in CGExprConstant. by Anders Carlsson · 15 years ago
  30. 2b35835 Move some functions from CodeGenFunctions to CodeGenModule so they can be used by CGExprConstant. by Anders Carlsson · 15 years ago
  31. ee38316 Rewrite member function pointer test not to rely on -O2. by Anders Carlsson · 15 years ago
  32. 0519b28 Fix typo. by Benjamin Kramer · 15 years ago
  33. d9097ff FileCheckize test case. by Benjamin Kramer · 15 years ago
  34. 2df96e7 Don't update the struct alignment when adding fields to a packed struct. Fixes PR5118. by Anders Carlsson · 15 years ago
  35. 3d363c5 More magic pixie dust. by Mike Stump · 15 years ago
  36. 944e705 Fix up debug information for block pointers a bit more. by Mike Stump · 15 years ago
  37. 31f2f9c When building constant structs, check if the resulting LLVM struct will be bigger than the record layout size and use a packed struct if that's the case. Fixes PR5108. by Anders Carlsson · 15 years ago
  38. b2f81cf Make sure to free the explicit template arguments provided for an by Douglas Gregor · 15 years ago
  39. d789d3d - Remove Sema::FindMethodInNestedImplementations(). by Steve Naroff · 15 years ago
  40. 1be8aee When the return type of a function is dependent, don't perform any by Douglas Gregor · 15 years ago
  41. b289b3f Implement a FIXME. This improves codegen just a tad. by Mike Stump · 15 years ago
  42. f8c3ad7 enumerator value of 0 is not a null pointer constant for by Fariborz Jahanian · 15 years ago
  43. 4513272 CodeGen may see out-of-line declarations of the various special member by Douglas Gregor · 15 years ago
  44. 249cead Patch to implement static casting which requires one by Fariborz Jahanian · 15 years ago
  45. 85caf03 Set __EXCEPTIONS by checking on darwin's triple. Patch by Rafael Espindola. by Fariborz Jahanian · 15 years ago
  46. bb206fd Fix bad grammar in static analyzer diagnostic. Reported by Robert Purves! by Ted Kremenek · 15 years ago
  47. f759df0 Move the "needs exception support" logic to clang. This also fixes by Rafael Espindola · 15 years ago
  48. d69dd78 Fix a lame regression in IR gen for C++ delete expressions. PR5102 by Douglas Gregor · 15 years ago
  49. 85e2db7 Add support for class and protocol references. by Steve Naroff · 15 years ago
  50. de8c5c7 A couple of refinements for laying out debug information for BlockDeclRefDecls. by Mike Stump · 15 years ago
  51. 9aeed32 Anonymous namespaces, sema + codegen. A lot of semantics are still broken, by John McCall · 15 years ago
  52. 4a5c15f Improve template argument deduction in the case where the parameter by Douglas Gregor · 15 years ago
  53. 3307475 When overload resolution fails for an overloaded operator, show the by Douglas Gregor · 15 years ago
  54. 60a90cc Tweak CHECK lines to eliminate a failure on i686-apple-darwin10 by Douglas Gregor · 15 years ago
  55. 893f955 Issue good diagnostics when initializing a refernce type with by Fariborz Jahanian · 15 years ago
  56. 27a84d0 Add an error for function parameters that have a qualified address space since this is not allowed by the embedded c extension spec. by Tanya Lattner · 15 years ago
  57. 871dc3e fix line #'s by Chris Lattner · 15 years ago
  58. 0e3b44b add some more popular examples, color code warning: and error: like the command line. by Chris Lattner · 15 years ago
  59. a67810e Convert from nonportable grep to filecheck, patch by John Thompson by Chris Lattner · 15 years ago
  60. 30a46b5 Update C++ status page by Douglas Gregor · 15 years ago
  61. 7a8233a Note location of operators caused the circularity. by Fariborz Jahanian · 15 years ago
  62. 75b08f1 <rdar://problem/7263113> Make clang produce gcc's objc_assign_StrongCast as a result of type-cast of an ivar in assignment. by Fariborz Jahanian · 15 years ago
  63. 76a69ad update copyright. by Chris Lattner · 15 years ago
  64. b1a6e68 Improve debugging information for BlockDeclRefExpr. WIP. Given this by Mike Stump · 15 years ago
  65. 432887f Spare the processors of those poor wretches who have no choice but to write by John McCall · 15 years ago
  66. c4e8321 Detect operator-> chains of arbitrary length. Use a terrible data structure by John McCall · 15 years ago
  67. 4a4e345 self-referecing operator '->' member function was causing by Fariborz Jahanian · 15 years ago
  68. 5d64e5b Find operators new/delete in base classes. FIXME -= 2; by Douglas Gregor · 15 years ago
  69. bf1cc05 Desugaring optimizations. Add single-step desugaring methods to all by John McCall · 15 years ago
  70. 1070c9f The C++ delete expression strips cv-qualifiers from the pointed-to type. My previous fix eliminated this behavior, so bring it back again. by Douglas Gregor · 15 years ago
  71. 0c41180 Pull TypeLocVisitor into its own header file. by Argyrios Kyrtzidis · 15 years ago
  72. b116884 Keep track of type references in DeclReferenceMap. by Argyrios Kyrtzidis · 15 years ago
  73. 09d8a95 In ASTVisitor, call the correct base methods. by Argyrios Kyrtzidis · 15 years ago
  74. fbc85e5 Fix Decl class hierarchy. by Argyrios Kyrtzidis · 15 years ago
  75. 7605618 13.1-p3 Overloadable declarations by Fariborz Jahanian · 15 years ago
  76. 5a70ea6 Resolve a source location inside the return type of a functon. by Argyrios Kyrtzidis · 15 years ago
  77. 05a7651 When pointing at a type decl reference, ASTLocation is a NamedDeclRef. by Argyrios Kyrtzidis · 15 years ago
  78. ef6cd67 Resolve a source location that is inside a type declarator. by Argyrios Kyrtzidis · 15 years ago
  79. eb66759 Introduce ObjCInterfaceLoc which provides type source information for ObjC interfaces. by Argyrios Kyrtzidis · 15 years ago
  80. 9036d5e Introduce TypedefLoc::getTypedefDecl(). by Argyrios Kyrtzidis · 15 years ago
  81. f4526e3 Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be: by Argyrios Kyrtzidis · 15 years ago
  82. f352bdd Introduce ObjCProtocolListLoc for keeping source location information for protocol references. by Argyrios Kyrtzidis · 15 years ago
  83. 24fab41 Introduce ObjCProtocolListType type subclass. by Argyrios Kyrtzidis · 15 years ago
  84. e3a535b Move DeclSpec::setProtocolQualifiers() out of line. by Argyrios Kyrtzidis · 15 years ago
  85. 71b0add Keep protocol source locations when parsing protocol references. by Argyrios Kyrtzidis · 15 years ago
  86. cd01f17 Introduce Type::getTypeClassName() that returns the string associated with the TypeClass enum. by Argyrios Kyrtzidis · 15 years ago
  87. 68006af Introduce TypeLoc::getSourceRange(). by Argyrios Kyrtzidis · 15 years ago
  88. b735471 -Introduce TypeLoc::getOpaqueData() -Make TypeLoc's constructor public. by Argyrios Kyrtzidis · 15 years ago
  89. 1ebd740 Add more const-goodness to ASTLocation. by Argyrios Kyrtzidis · 15 years ago
  90. a92ba27 Fix truck sized thinko where Darwin/ARM toolchain didn't look for programs in by Daniel Dunbar · 15 years ago
  91. a22b640 Add a test case demonstrating a situation where we get protocol type checking by Daniel Dunbar · 15 years ago
  92. 9091656 Handle C++ delete expressions when the overloaded delete operator is a by Douglas Gregor · 15 years ago
  93. 4a6a2b8 Fixes a nasty bug which only turned up in 32bit build of clang and by Fariborz Jahanian · 15 years ago
  94. 6af0104 Update checker build. by Ted Kremenek · 15 years ago
  95. 95efe0f Fix: <rdar://problem/7261075> [RegionStore] crash when handling load: '*((unsigned int *)"????")' by Ted Kremenek · 15 years ago
  96. e2b7eea Make sure to flush raw_string_ostream, from John Thompson by Douglas Gregor · 15 years ago
  97. b3496c7 Allow the PYTHON make variable to override the default Python when running Clang tests, from Ken Dyck. by Douglas Gregor · 15 years ago
  98. 214904e Set GNUMode only for the "gnu" language standard options, from Ken Dyck! by Douglas Gregor · 15 years ago
  99. 4831682 Slightly improve the semantics of extern templates for member functions of class templates by Douglas Gregor · 15 years ago
  100. 9e17cc6 Fix really insidious bug in RegionStoreManager::RemoveDeadBindings() by Ted Kremenek · 15 years ago