1. cc02553 Remove Decl and CFG from ExplodedGraph. This leads to a series small changes. by Zhongxing Xu · 15 years ago
  2. 9351c17 Basic support for default argument expressions for function templates. by Anders Carlsson · 15 years ago
  3. ed961f9 Factor setting default arguments out into SetParamDefaultArgument. by Anders Carlsson · 15 years ago
  4. ef46d18 Fix ivar layout map generation (hopefully). by Anders Carlsson · 15 years ago
  5. 5f49a0c Use hasDefaultArg instead of getDefaultArg. by Anders Carlsson · 15 years ago
  6. 66e78e2 Add Decl getter/setters for uninstantiated default arguments for function parameters. by Anders Carlsson · 15 years ago
  7. 66e3067 Check that the default argument is well-formed before checking the initializer types. by Anders Carlsson · 15 years ago
  8. b13bc41 Eliminate a GCC warning by Douglas Gregor · 15 years ago
  9. e666b1b Remove #ifdef'out code. by Fariborz Jahanian · 15 years ago
  10. c305833 Keep track of the template parameter depth properly when we have by Douglas Gregor · 15 years ago
  11. ac50213 Add test case for PR 4759. by Ted Kremenek · 15 years ago
  12. 0878007 ConstraintManager::AssumeDual now accepts a 'DefinedSVal' instead of 'SVal' for by Ted Kremenek · 15 years ago
  13. c3a9415 Introduce 'DefinedSVal', an intermediate parent class between Loc/NonLoc and by Ted Kremenek · 15 years ago
  14. 55a1846 Add missing '&&'... by Daniel Dunbar · 15 years ago
  15. 0e2679d PR4766: Don't pass -static to 'as' on x86_64 on Darwin. by Daniel Dunbar · 15 years ago
  16. 6d9eae6 Remove ivarlayout bitmap optimization, instead if all zeros, by Fariborz Jahanian · 15 years ago
  17. 9983cc1 Don't try to evaluate an expression that is type- or value-dependent while building the CFG by Douglas Gregor · 15 years ago
  18. a24eb4e Skip transparent contexts when performing C++ name lookup by Douglas Gregor · 15 years ago
  19. 504bf55 Handle array to pointer decay in EmitCastExpr and get rid of VisitImplicitCastExpr. by Anders Carlsson · 15 years ago
  20. e977624 Handle CK_NullToMemberPointer in ScalarExprEmitter::EmitCast by Anders Carlsson · 15 years ago
  21. 4e382f3 Pass the cast kind to ScalarExprEmitter::EmitCastExpr. by Anders Carlsson · 15 years ago
  22. 26ba850 Use the right cast kind when comparing null to member pointers. by Anders Carlsson · 15 years ago
  23. 20b3e99 Implement support for equality comparisons (!=, ==) of member by Douglas Gregor · 15 years ago
  24. 018d8e0 normalize the CharacterLiteral::getLocation method name, patch by Chris Lattner · 15 years ago
  25. 77a2b4f Fixes pr4763. by Fariborz Jahanian · 15 years ago
  26. ad3e711 More member pointer work. by Anders Carlsson · 15 years ago
  27. 2d82719 Remove dead code by Anders Carlsson · 15 years ago
  28. 5842ba9 Try to complete a type before looking for conversion functions within by Douglas Gregor · 15 years ago
  29. 19b7b15 Refactor the template-instantiation logic for expressions into a by Douglas Gregor · 15 years ago
  30. f42e4a6 Fix build of clang with gcc-4.4: #include <cstdio> was missing. by Torok Edwin · 15 years ago
  31. 1bba242 Improve top-level-semicolon test a bit by Douglas Gregor · 15 years ago
  32. a1d71ae Top-level semicolons are allowed in C++0x. Fixes PR4755. by Douglas Gregor · 15 years ago
  33. efd5bda Make sure to adjust function template declarations to their templated by Douglas Gregor · 15 years ago
  34. 55cc2ed Remove TargetInfo::getTargetPrefix(). by Daniel Dunbar · 15 years ago
  35. ec312a1 Switch to StringRef based BitstreamWriter APIs, where appropriate. by Daniel Dunbar · 15 years ago
  36. b1e5e66 Remove arch normalization from Driver, this should be unnecessary now that by Daniel Dunbar · 15 years ago
  37. 1752ee4 Switch TargetInfo to store an llvm::Triple. by Daniel Dunbar · 15 years ago
  38. 2c0843f Switch ABI selection to use llvm::Triple instead of string munging. by Daniel Dunbar · 15 years ago
  39. 88650c3 fix a GCC type punning warning. by Chris Lattner · 15 years ago
  40. 0fa0daa prune #includes. by Chris Lattner · 15 years ago
  41. d57a7ef API changes to match llvm ToT. by Chris Lattner · 15 years ago
  42. 8bde505 Reenable clang using clang-cc for C++ and all archs by default. by Daniel Dunbar · 15 years ago
  43. 55a759b Fix a few tests to be -Asserts agnostic. - Ugh. by Daniel Dunbar · 15 years ago
  44. 4a12408 Temporarily switch clang back to not using clang-cc by default for C++, and only by Daniel Dunbar · 15 years ago
  45. 6cb7c1a Replace cerr with errs(). by Benjamin Kramer · 15 years ago
  46. 68eaf00 cerr -> errs. by Daniel Dunbar · 15 years ago
  47. 95190d0 Tests for C++ lex.trigraph, patch by Mats! by Daniel Dunbar · 15 years ago
  48. a85b352 use errs() instead of cerr. by Chris Lattner · 15 years ago
  49. 7f7b748 CMake: Improve installation of Clang by Douglas Gregor · 15 years ago
  50. 7ebe971 Don't install Clang libraries. by Douglas Gregor · 15 years ago
  51. 92bcc27 adjust for raw_fd_ostream api change. by Chris Lattner · 15 years ago
  52. 70d488e Whoops, comment this out for now. I'll fix it shortly. by Anders Carlsson · 15 years ago
  53. fc3eaa4 More work towards zero-initializing structs that contain member pointers in constant expressions. by Anders Carlsson · 15 years ago
  54. 341bdf8 Remove the PaddingFields member from CGRecordLayout, it wasn't used anyway. by Anders Carlsson · 15 years ago
  55. 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 15 years ago
  56. 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 15 years ago
  57. d1a9bac Handle CK_NullToMemberPointer casts in the constant expr emitter. by Anders Carlsson · 15 years ago
  58. 0086ccb Change the constant expression emitter to look at the cast kind for to-union casts. by Anders Carlsson · 15 years ago
  59. 27a5b9b Add CK_NullToMemberPointer and CK_BaseToDerivedMemberPointer cast kinds. Make -ast-dump print out the cast kinds of cast expressions. by Anders Carlsson · 15 years ago
  60. 92f5822 Add a -fno-elide-constructors option to clang-cc. by Anders Carlsson · 15 years ago
  61. 9ec22a3 Type of a ?: expression whose either expression is a built-in 'id' by Fariborz Jahanian · 15 years ago
  62. 835ed7f Don't issue warning on multiple selector found when by Fariborz Jahanian · 15 years ago
  63. c47285c Removed couple of FIXME comments. by Fariborz Jahanian · 15 years ago
  64. 92eaacb Removed -Wundeclared-selector and -Wreadonly-setter-attrs from by Fariborz Jahanian · 15 years ago
  65. 6365e3e tweak some pointer sema checking stuff (which was added to implement PR4175) to by Chris Lattner · 15 years ago
  66. e7925a0 Second half of, clang, AuroraUX toolchain support. by Edward O'Callaghan · 15 years ago
  67. d83d040 Implement delayed parsing for member function templates. Fixes PR4608. by Douglas Gregor · 15 years ago
  68. c141086 Updated statuc page to reflect recent implementations by Fariborz Jahanian · 15 years ago
  69. 2376002 Remove 'AnalysisContext::setDecl()', as we the Decl associated with an by Ted Kremenek · 15 years ago
  70. 54c809b Constify LocationContext* (parent) and Stmt* fields in LocationContext. by Ted Kremenek · 15 years ago
  71. 1561248 Add test taking the address of a member function template and converting it to a member pointer. by Douglas Gregor · 15 years ago
  72. be1ad92 Update Clang C++ status to better reflect what is implemented. by Douglas Gregor · 15 years ago
  73. 82cd37c Remove 'SelfRegion' field from both BasicStoreManager and RegionStoreManager. by Ted Kremenek · 15 years ago
  74. 65ec1fd Implement conversion function templates, along with the ability to use by Douglas Gregor · 15 years ago
  75. 263b352 Calculate the address point for a vtable better, and start fleshing out the vcall by Mike Stump · 15 years ago
  76. 17e32f3 Refactor instantiation of destructors to use the common CXXMethodDecl by Douglas Gregor · 15 years ago
  77. c28bbc2 Patch to ir-gen copy assigning array members when synthesizing by Fariborz Jahanian · 15 years ago
  78. d17da2b Add LocationContext* field to VarRegion. This is needed for interprocedural analysis. by Ted Kremenek · 15 years ago
  79. 1cbc6b0 Add test for out-of-line definition of a conversion function by Douglas Gregor · 15 years ago
  80. ac373c4 Fix parsing for out-of-line definitions of constructors and by Douglas Gregor · 15 years ago
  81. dec0666 Introduce support for constructor templates, which can now be declared by Douglas Gregor · 15 years ago
  82. eb0b6d5 Patch to provide ir-gen support in copying array members by Fariborz Jahanian · 15 years ago
  83. 666a91e Testcase for a recent checkin. by Mike Stump · 15 years ago
  84. 0aa3f75 remove a dead warning. by Chris Lattner · 15 years ago
  85. 64a54ad Array member construction in prologue of user-declared constructors. by Fariborz Jahanian · 15 years ago
  86. 0de7899 Introduce getConstantArrayElementCount API and use it in by Fariborz Jahanian · 15 years ago
  87. 1633427 Fix typo. by Mike Stump · 15 years ago
  88. 0b14331 Eagerly bind 'self' to SelfRegion. Thus we do not need to get code decl from by Zhongxing Xu · 15 years ago
  89. f3cd673 Fix commentos by Daniel Dunbar · 15 years ago
  90. 7cd830b Fix refacto. by Daniel Dunbar · 15 years ago
  91. f6d6a22 Reversing part of 79544. by Sanjiv Gupta · 15 years ago
  92. b8310ea Get the code decl from the initial location context. by Zhongxing Xu · 15 years ago
  93. eda9546 Get the code decl from the initial location context. by Zhongxing Xu · 15 years ago
  94. 641f7d1 gcc told me to add these. by Daniel Dunbar · 15 years ago
  95. 5ab128b Tie the local check NSErrorCheck to a Decl to pave the way by Zhongxing Xu · 15 years ago
  96. b9871a2 We now support overriding base functions in vtables. WIP. by Mike Stump · 15 years ago
  97. 3caa4fb Remove comma at the end of enumerator list. by Daniel Dunbar · 15 years ago
  98. a5d8200 Remove TypeSpecStartLocation from VarDecl/FunctionDecl/FieldDecl, and use DeclaratorInfo to get this information. by Argyrios Kyrtzidis · 15 years ago
  99. d1571ac Make the new Objective-C "id" and "Class" redefinition types special by Douglas Gregor · 15 years ago
  100. 6b90686 Implement support for calling member function templates, which involves: by Douglas Gregor · 15 years ago