1. bc6f0da Add back 122079 so we can ignore the argument some more. by Eric Christopher · 14 years ago
  2. 6547884 [analyzer] Support post-visiting ObjCIvarRefExprs for checkers. by Argyrios Kyrtzidis · 14 years ago
  3. 5078d46 [analyzer] Add 'bool ignorePrefix' parameter to cocoa::deriveNamingConvention to control whether by Argyrios Kyrtzidis · 14 years ago
  4. f7fbbda [analyzer] Add 'isLoad' parameter in Checker::visitLocation() to conveniently distinguish between loads/stores. by Argyrios Kyrtzidis · 14 years ago
  5. 5c7bf42 Implement C++ [temp.func.order]p5 more directly, by passing down the by Douglas Gregor · 14 years ago
  6. b6a2b08 Remove ProgramPoint parameter from GenericNodeBuilder::generateNode(). by Ted Kremenek · 14 years ago
  7. 2b57aef Added warning about invalid register specification for local variables. by Abramo Bagnara · 14 years ago
  8. 27c54e5 Rework ExprEngine::processCFGBlockEntrance() by Ted Kremenek · 14 years ago
  9. 7771406 Remove several silly methods from ento::CoreEngine by Ted Kremenek · 14 years ago
  10. 21371ea When mapping from a function parameter pack to the set of function by Douglas Gregor · 14 years ago
  11. 55825aa Rename misc. methods in ento::Worklist to start with lowercase letter. by Ted Kremenek · 14 years ago
  12. e36de1f Rename misc. methods in GRSubEngine to start by Ted Kremenek · 14 years ago
  13. 10ffc00 Add testing for unexpanded parameter packs in all of the C++ by Douglas Gregor · 14 years ago
  14. 66cf92a Only traverse template argument locations if we actually have explicit by Matt Beaumont-Gay · 14 years ago
  15. 26c9cb5 Remove dead code. by Zhongxing Xu · 14 years ago
  16. d373119 Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which by Douglas Gregor · 14 years ago
  17. 50f6aca Add some expression kinds to CheckerVisitor.def. by Zhongxing Xu · 14 years ago
  18. 65423ae Fix comment. by Zhongxing Xu · 14 years ago
  19. f51d0b6 Rename CXXCtorInitializer::BaseOrMember to Initializee, since it will also be by Sean Hunt · 14 years ago
  20. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 14 years ago
  21. 97fcc49 Check for delegating constructors and (currently) return an error about them. by Sean Hunt · 14 years ago
  22. 65197b4 Add semantic checking that the "thousands grouping" by Ted Kremenek · 14 years ago
  23. bd18d45 Add printf format string parsing support for ' by Ted Kremenek · 14 years ago
  24. 91fc73e When instantiating the arguments to an initializer, use the by Douglas Gregor · 14 years ago
  25. f84109e Update AST reader/writer to handle new AppleKext. by Fariborz Jahanian · 14 years ago
  26. 12c9c00 Implement substitution of a function parameter pack for its set of by Douglas Gregor · 14 years ago
  27. 170464b Prefix all attribute enumerators with attr_ for consistency. by Francois Pichet · 14 years ago
  28. 3cd47e7 Do not use cdecl, fastcall, stdcall etc.. as identifier name. They are reserved keywords at least on MSVC. by Francois Pichet · 14 years ago
  29. b466d01 Add all options needed to support -fapple-kext. wip. by Fariborz Jahanian · 14 years ago
  30. a009b59 Factor out the template transformation of a sequence of function by Douglas Gregor · 14 years ago
  31. f5c65ff Implement template argument deduction from a call to a function by Douglas Gregor · 14 years ago
  32. ebfde17 Put warning about makeing a string writable into by Fariborz Jahanian · 14 years ago
  33. c81f2a2 PowerPC fixes. by Roman Divacky · 14 years ago
  34. 914c9a6 Tweak the wording of this warning further based on a suggestion from Chris. by Chandler Carruth · 14 years ago
  35. 9d156a7 Introduce an AttributedType, but don't actually use it anywhere yet. by John McCall · 14 years ago
  36. b0ddf3a When default-initializing a TemplateArgumentLocInfo, make sure that we by Douglas Gregor · 14 years ago
  37. 603cfb4 Initial implementation of function parameter packs. This implementation allows: by Douglas Gregor · 14 years ago
  38. 1fe85ea Add Decl::isParameterPack(), which covers both function and template by Douglas Gregor · 14 years ago
  39. b1fa3dc Use the proper enum as parameter, instead of unsigned. No functionality change. by Argyrios Kyrtzidis · 14 years ago
  40. 1d65ebb Eliminate two "unsupported" errors relating to variadic templates: one by Douglas Gregor · 14 years ago
  41. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 14 years ago
  42. ba68eca Add semantic analysis for the creation of and an AST representation by Douglas Gregor · 14 years ago
  43. f457c1a Implement proper parameter pack matching for non-type template by Douglas Gregor · 14 years ago
  44. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 14 years ago
  45. 711c52b Refactor the application of type attributes so that attributes from by John McCall · 14 years ago
  46. 2fdc5e8 Many of the built-in operator candidates introduced into overload by Douglas Gregor · 14 years ago
  47. 54c53cc Improve our handling of non-type template parameters in partial by Douglas Gregor · 14 years ago
  48. 843cb8d Fix wording for err_invalid_use_of_bound_member_func by Matt Beaumont-Gay · 14 years ago
  49. 112c330 Fold -fobjc-nonfragile-abi2 into -fobjc-nonfragile-abi. // rdar://8818375 by Fariborz Jahanian · 14 years ago
  50. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  51. 9f7a6ee Implement -Wself-assign, which warns on code such as: by Chandler Carruth · 14 years ago
  52. b2b5cc0 Enhance the diagnostic for negative array sizes to include the by Chandler Carruth · 14 years ago
  53. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 14 years ago
  54. b162054 Rename MaybeSkipFunctionBodyForCodeCompletion -> trySkippingFunctionBodyForCodeCompletion and check isCodeCompletionEnabled() before doing the call. by Argyrios Kyrtzidis · 14 years ago
  55. 1b21391 Fix 80 column violation. by Argyrios Kyrtzidis · 14 years ago
  56. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 14 years ago
  57. 0fe5397 When in code-completion, skip obj-c method bodies for speed up. by Argyrios Kyrtzidis · 14 years ago
  58. bacb949 Unwrap template argument packs when checking the template arguments of by Douglas Gregor · 14 years ago
  59. 925910d Diagnose the presence of unexpanded parameter packs within class by Douglas Gregor · 14 years ago
  60. af4bad2 Remove a couple of setters that have no callers. by Argyrios Kyrtzidis · 14 years ago
  61. 3437f1f Speed up code-completion by skipping function bodies. by Argyrios Kyrtzidis · 14 years ago
  62. aa165f8 Refactor the tree transform's many loops over sets of expressions by Douglas Gregor · 14 years ago
  63. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  64. 6b9109e When we attempt to create a built-in that involves a library type we by Douglas Gregor · 14 years ago
  65. 743b82b Unkown -> Unknown by Peter Collingbourne · 14 years ago
  66. 5389f48 Expose Objective-C type encodings of declarations to libclang users. This also adds a method in ASTContext which encodes FunctionDecls using the same encoding format that is used for Objective-C methods. by David Chisnall · 14 years ago
  67. 3f59c97 The -fshort-wchar option causes wchar_t to become unsigned, in addition to being by Chris Lattner · 14 years ago
  68. a6b0b96 Add basic support for pointer arithmetic in by Ted Kremenek · 14 years ago
  69. 3252134 Remove the EntoSA directories. by Argyrios Kyrtzidis · 14 years ago
  70. 194252d don't use #pragma mark, it isn't portable. by Chris Lattner · 14 years ago
  71. 1a3942a ifndef _MSC_VER out #pragma mark on MSVC. It still tries to parse the text even by Michael J. Spencer · 14 years ago
  72. 7f040a9 Refactor how we collect attributes during parsing, and add slots for attributes by John McCall · 14 years ago
  73. 10738d3 Add an AST representation for non-type template parameter packs, e.g., by Douglas Gregor · 14 years ago
  74. a8bc8c9 Implement parsing of function parameter packs and non-type template by Douglas Gregor · 14 years ago
  75. c32647d Add -fobjc-default-synthesized-properties flag by Ted Kremenek · 14 years ago
  76. 2114258 Chris Lattner has strong opinions about directory layout. :) by Ted Kremenek · 14 years ago
  77. fd03843 Kill RecordType::getAddressSpace() and its fixme; that's just not how by John McCall · 14 years ago
  78. b9c6631 Reimplement the comparison of a class template partial by Douglas Gregor · 14 years ago
  79. 3a8f40e Rename headers: 'clang/GR' 'clang/EntoSA' and update Makefile. by Ted Kremenek · 14 years ago
  80. 9ef6537 Rename static analyzer namespace 'GR' to 'ento'. by Ted Kremenek · 14 years ago
  81. c478a14 Add WIP prototype of a new buffer overflow by Ted Kremenek · 14 years ago
  82. 6bd8124 Add 'getConditionType()' and 'getArrayIndexType()' by Ted Kremenek · 14 years ago
  83. c6ed729 Change all self assignments X=X to (void)X, so that we can turn on a by Jeffrey Yasskin · 14 years ago
  84. 0d80abc Unify the consistency checking for deduced template arguments into a by Douglas Gregor · 14 years ago
  85. e02e262 Implement template argument deduction for pack expansions whose by Douglas Gregor · 14 years ago
  86. 99130e5 Complain on missing property getter method only by Fariborz Jahanian · 14 years ago
  87. d2592a3 [analyzer] Refactoring: Drop the 'GR' prefix. by Argyrios Kyrtzidis · 14 years ago
  88. 5a4f98f [analyzer] Refactoring: Move stuff into namespace 'GR'. by Argyrios Kyrtzidis · 14 years ago
  89. 98cabba [analyzer] Refactoring: include/clang/Checker -> include/clang/GR by Argyrios Kyrtzidis · 14 years ago
  90. 20a55e2 Implicitly expand argument packs when performing template argument by Douglas Gregor · 14 years ago
  91. c4bf2b9 Introduced raw_identifier token kind. by Abramo Bagnara · 14 years ago
  92. a0e27f0 Redesign the way anonymous fields are handled in designated-initializers. by Francois Pichet · 14 years ago
  93. b68e399 In C++, if the user redeclares a builtin function with a type that is by Douglas Gregor · 14 years ago
  94. bdb2d50 Fix a major inconsistency in the representation of Objective-C by Douglas Gregor · 14 years ago
  95. 2fcbcef Implement BlockDecl::getSourceRange(). The bogus source-range by Douglas Gregor · 14 years ago
  96. b0ee93c A class template partial specialization cannot be a friend. Fixes PR8649. by Douglas Gregor · 14 years ago
  97. 3910cfd Teach clang_getCursorSemanticParent() and by Douglas Gregor · 14 years ago
  98. 786e617 Initialize LangOptions::MSCVersion. Thanks to Csaba Raduly for noting the omission by Douglas Gregor · 14 years ago
  99. b99268b Implement instantiation of pack expansions whose pattern is a type-id by Douglas Gregor · 14 years ago
  100. 00ccbef Fix the noreturn conversion to only strip off a single level of indirection. by John McCall · 14 years ago