1. 99439d4 Implement a hack to work around the changing exception specification of operator new in C++0x. by Sebastian Redl · 13 years ago
  2. d0956fc Remove duplicate group definition that snuck in due to a merge conflict. by Ted Kremenek · 13 years ago
  3. 908c09f Take 2: merge -Wuninitialized-experimental into -Wuninitialized. Only *must-be-uninitialized* warnings are reported, with *maybe-uninitialized* under a separate flag. I await any fallout/comments/feedback, although hopefully this will produce no noise for users. by Ted Kremenek · 13 years ago
  4. 76709bf Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 13 years ago
  5. f7bafc7 Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 13 years ago
  6. 6f34213 Rename UninitializedValuesV2 to UninitializedValues. by Ted Kremenek · 13 years ago
  7. f3f5379 Remove old UninitializedValues analysis. by Ted Kremenek · 13 years ago
  8. 7cbc558 When synthesizing a label declaration based on a goto statement that by Douglas Gregor · 13 years ago
  9. 9fc90c1 Incorporate source ranges for RangeBugReport when coelescing reports into equivalence classes. by Ted Kremenek · 13 years ago
  10. a4fdbfa Block return type of the initialized must be by Fariborz Jahanian · 13 years ago
  11. 2e2468e Get rid of the static FileManager::FixupRelativePath. by Anders Carlsson · 13 years ago
  12. d05c200 Change GetNullarySelector and GetUnarySelector to take a StringRef. by Anders Carlsson · 13 years ago
  13. 8026f6d Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcept specifiers, unique FunctionProtoTypes with a ContextualFoldingSet, as suggested by John McCall. by Sebastian Redl · 13 years ago
  14. 90ba78c Place duplicate argument declaration in in by Fariborz Jahanian · 13 years ago
  15. caa35e4 Revert "Disable inherited constructors for 2.9." by Sebastian Redl · 13 years ago
  16. a808c54 Disable inherited constructors for 2.9. by Sebastian Redl · 13 years ago
  17. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 13 years ago
  18. 796aa44 Forgotten part of previous commit. by Abramo Bagnara · 13 years ago
  19. 06dec89 Renamed OffsetOfNode::getRange to getSourceRange for uniformity. by Abramo Bagnara · 13 years ago
  20. fadb53b Fixes for some more expressions containing function templateids that by Douglas Gregor · 13 years ago
  21. 6f4596c Implement a hack intended to allow Clang to parse libstdc++ 4.5's by Douglas Gregor · 13 years ago
  22. f4f7cb8 OpenCL: if double precision floating point constant encountered by Peter Collingbourne · 13 years ago
  23. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  24. c57c17d Avoid do drop outer template parameter lists on the floor. by Abramo Bagnara · 13 years ago
  25. 0d28d36 When doing reachability analysis for warnings issued under DiagRuntimeBehavior, don't construct a ParentMap or CFGStmtMap. by Ted Kremenek · 13 years ago
  26. b8ad5ee Rework interaction between AnalysisContext and CFG::BuildOptions to keep a BuildOptions object around instead of keeping a copy of the flags. by Ted Kremenek · 13 years ago
  27. 975cc64 Revert r127206 "Detect attempts to provide a specialization of a function within by Daniel Dunbar · 13 years ago
  28. 6147806 Lookup selector in protocol list of qualified objc type by Fariborz Jahanian · 13 years ago
  29. b0f4b9a Introduce '-chain-include' option to specify headers that will be converted to chained PCHs in memory by Argyrios Kyrtzidis · 13 years ago
  30. ba877ad Fixed InnerLocStart. by Abramo Bagnara · 13 years ago
  31. 02b3774 include/clang/Basic/BuiltinsX86.def: __builtin_ia32_crc32**() should be defined to take unsigned args and to return unsigned value. by NAKAMURA Takumi · 13 years ago
  32. 86f436f include/clang/Makefile: [PR2928] "make install" may install include files along explicit pattern, not to install CMake's building stuff. by NAKAMURA Takumi · 13 years ago
  33. eecf5fa Add a bit to ParmVarDecl indicating whether the parameter undergoes by John McCall · 13 years ago
  34. 299a4a9 Add 'OverridenFilesKeepOriginalName' field in SourceManager which if true the SourceManager by Argyrios Kyrtzidis · 13 years ago
  35. cf33333 static analyzer: Fix use-after-free bug in RegionStore involving LazyCompoundValueData not reference counting Store objects. by Ted Kremenek · 13 years ago
  36. b77cab9 Clarify the context in which an Objective-C type name is being parsed by Douglas Gregor · 13 years ago
  37. f525160 Teach libclang's token-annotation logic about context-sensitive by Douglas Gregor · 13 years ago
  38. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 13 years ago
  39. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 13 years ago
  40. f2cf562 Fixed bitfields source range. by Abramo Bagnara · 13 years ago
  41. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 13 years ago
  42. 834e3f6 Fix my earlier commit to work with escaped newlines and leave breadcrumbs by John McCall · 13 years ago
  43. 2792fa5 objc_gc wants a pointer type, not a function type; give it a more appropriate by John McCall · 13 years ago
  44. 30900da Add an API call to retrieve the spelling data of a token from its SourceLocation. by John McCall · 13 years ago
  45. db93fde Detect attempts to provide a specialization of a function within a by Douglas Gregor · 13 years ago
  46. d52e8b8 Change diagnostic message from "Extension" to "ExtWarn" to find more problems with missing semicolons. by Carl Norum · 13 years ago
  47. d97cec3 g++ is more permissive regarding flexible arrays. by Argyrios Kyrtzidis · 13 years ago
  48. cc20945 Support explicit template specialization and instantiation for members by Douglas Gregor · 13 years ago
  49. c2f3e7f The conditional needs to be pushed before the branch. Make the test less by John McCall · 13 years ago
  50. d47aad9 Add a non-static FixupRelativePath to FileManager. by Anders Carlsson · 13 years ago
  51. 65f7165 Redo part of r127137: by Joerg Sonnenberger · 13 years ago
  52. e6ec11a Remove the AST printer (-ast-print-xml), which is too incomplete and by Douglas Gregor · 13 years ago
  53. 9ade4ae If called as *cpp or *cpp-[^-]*, run only the preprocessor. If no by Joerg Sonnenberger · 13 years ago
  54. af036a6 Convert FileManager::FixupRelativePath over to using PathV2. by Anders Carlsson · 13 years ago
  55. eff1dbe We may fail to map a declaration in a template to its instantiated by Douglas Gregor · 13 years ago
  56. 841b238 Rename the type argument for the iboutletcollection attribute to not by Douglas Gregor · 13 years ago
  57. c850578 Write CXX base specifier offsets for chained ASTs. by Anders Carlsson · 13 years ago
  58. ec356c3 xpose HeaderSearch::SearchDirs to tools,s, from Paul Holden by Douglas Gregor · 13 years ago
  59. a868c37 Completed source ranges fixes for all classes inheriting from TypeDecl. by Abramo Bagnara · 13 years ago
  60. 344577e Fixed TypedefDecl and TemplateTypeParameter source range. by Abramo Bagnara · 13 years ago
  61. 8b5b409 Reinstate r127112, "Propagate new-style exception spec information to ExtProtoInfo.", this time with the missing header. by Sebastian Redl · 13 years ago
  62. 708a866 Revert r127112, "Propagate new-style exception spec information to ExtProtoInfo." by NAKAMURA Takumi · 13 years ago
  63. 06bfa84 Propagate new-style exception spec information to ExtProtoInfo. by Sebastian Redl · 13 years ago
  64. 6e5d319 Propagate new-style exception spec information to Declarator. by Sebastian Redl · 13 years ago
  65. 6784304 Fixed LabelDecl source range and cleaned creation code. by Abramo Bagnara · 14 years ago
  66. c494f77 When determining template instantiation arguments within a function by Douglas Gregor · 14 years ago
  67. 7acafd0 Parser support for noexcept specifications. by Sebastian Redl · 14 years ago
  68. b6ab6c1 Improved MemberPointerType source locations. by Abramo Bagnara · 14 years ago
  69. b1c8649 Currently we can only remap a file by creating a MemoryBuffer and replacing the file contents with it. by Argyrios Kyrtzidis · 14 years ago
  70. 15727dd Introduce OwnsRemappedFileBuffers field in ASTUnit, indicating whether the ASTUnit should delete the remapped buffers. by Argyrios Kyrtzidis · 14 years ago
  71. 4e43259 Give warnings about static initializers of non-integral type their own warning by Nick Lewycky · 14 years ago
  72. cb710a4 Diagnose destructor templates. Fixes PR7904. by Douglas Gregor · 14 years ago
  73. 7ec1873 When clearing a LookupResult structure, clear out the naming class, by Douglas Gregor · 14 years ago
  74. 6cd9d4a Teach Sema::ActOnCXXNestedNameSpecifier and Sema::CheckTemplateIdType by Douglas Gregor · 14 years ago
  75. 9a299e0 Make sure to put template parameters into their owning template's by Douglas Gregor · 14 years ago
  76. 4a85a73 Fixed source range for ClassTemplateSpecializationDecl. by Abramo Bagnara · 14 years ago
  77. 77d4ee2 Improved TemplateTypeParmDecl end location. by Abramo Bagnara · 14 years ago
  78. 8fbb762 Fixed end location of FriendDecl. by Abramo Bagnara · 14 years ago
  79. 203548b Fixed source range for LabelDecl. by Abramo Bagnara · 14 years ago
  80. 55a9637 Removed left brace location from LinkageSpecDecl. by Abramo Bagnara · 14 years ago
  81. 5f6bcbe Fixed end source location for LinkageSpecDecl. by Abramo Bagnara · 14 years ago
  82. 21e006e Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. by Abramo Bagnara · 14 years ago
  83. 6771423 When we use the default template arguments of a template template by Douglas Gregor · 14 years ago
  84. c5aff44 Teach CFGImplicitDtor::getDestructorDecl() about arrays of objects with destructors. by Ted Kremenek · 14 years ago
  85. 0a9beb5 Force CaseStmt to store its child statements in source-code order, by Douglas Gregor · 14 years ago
  86. 9c6082f Revert "Add CC_Win64ThisCall and set it in the necessary places." by Tilmann Scheller · 14 years ago
  87. 75e8504 Fix the source range for a member access expression that includes a by Douglas Gregor · 14 years ago
  88. c9f8f5a Introduce CFGImplicitDtor::isNoReturn() to query whether a destructor actually returns. Use this for -Wreturn-type to prune false positives reported in PR 6884. by Ted Kremenek · 14 years ago
  89. 88d117c Add CC_Win64ThisCall and set it in the necessary places. by Tilmann Scheller · 14 years ago
  90. 9151c11 Kill off TreeTransform::TransformNestedNameSpecifier() in favor of the by Douglas Gregor · 14 years ago
  91. 1d752d7 Kill off the TreeTransform::TransformTemplateName overload that has by Douglas Gregor · 14 years ago
  92. f1fe375 Fix a thinko found by Craig Silverstein by Douglas Gregor · 14 years ago
  93. b6744ef Push nested-name-specifier source location information into template by Douglas Gregor · 14 years ago
  94. 46bb4f1 Eliminate some unused getQualifierRange() member functions. We deal in nested-name-specifier locations now. by Douglas Gregor · 14 years ago
  95. bdc49d3 Pretty up the wrong-number-of-arguments-for-attribute diagnostic by by John McCall · 14 years ago
  96. d5313b0 Provide an attribute, objc_method_family, to allow the inferred family by John McCall · 14 years ago
  97. 0ae927b Split out a subgroup of -Wconversion called -Wsign-conversion. Note that by John McCall · 14 years ago
  98. eca5d22 Support a new InheritableAttr subclass, InheritableParamAttr, which is by John McCall · 14 years ago
  99. 406f98f When we're substituting into a parameter-type-list nested inside the pattern by Douglas Gregor · 14 years ago
  100. 85f3d76 Move some of the logic about classifying Objective-C methods into by John McCall · 14 years ago