1. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 14 years ago
  2. 0b7e678 Insomniac refactoring: change how the parser allocates attributes so that by John McCall · 14 years ago
  3. 2b32dad Add a new warning for exit-time destructors. by Anders Carlsson · 14 years ago
  4. c05a94b Call out ObjC parameter types as a different kind of declarator context by John McCall · 14 years ago
  5. d97f558 Support for Transparent unions used as overloadable by Fariborz Jahanian · 14 years ago
  6. 2923380 Teach DelayedDiagnostic to copy its string, rather than hope that the by Douglas Gregor · 14 years ago
  7. 7f9fc3f switch a few Driver APIs to use llvm::ArrayRef, cleaning up code. by Chris Lattner · 14 years ago
  8. 9d5a165 Fix crash in clang_getInstantiationLoc() when SourceManager::getInstantiationLoc() can return a SourceLocatin with an invalid by Ted Kremenek · 14 years ago
  9. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 14 years ago
  10. ac4df24 Warn about unused declaration-specifiers on tag declarations. by John McCall · 14 years ago
  11. 3c66d30 Frontend: Add a more explicit -backend-option flag for passing backend command by Daniel Dunbar · 14 years ago
  12. e5a3ce6 Don't clear OverloadCandidateSets on destruction, it has no effect anymore. by Benjamin Kramer · 14 years ago
  13. 614f96a Migrate 'PrettySTackTraceParserEntry' object out of Parser, and have it constructed within ParseAST. This avoids double crashes by Ted Kremenek · 14 years ago
  14. da60885 Frontend: Change CC_PRINT_HEADERS to not print header depth markers, these don't by Daniel Dunbar · 14 years ago
  15. 4f32786 Improve crash recovery cleanup to recovery CompilerInstances during crash recovery. This was a huge resource "root" during crashes. by Ted Kremenek · 14 years ago
  16. 05e5930 Memorize presence/absence of -nostdlib in Driver. by Joerg Sonnenberger · 14 years ago
  17. 8ab2bdc Remember sysroot in Driver. Pass it down to ld for NetBSD, FreeBSD by Joerg Sonnenberger · 14 years ago
  18. eedd467 Downgrade err_mismatched_exception_spec to a ExtWarning in Microsoft mode. MSVC doesn't do any validation on exception specifications. by Francois Pichet · 14 years ago
  19. ba814e7 Initialize FakeAddressSpaceMap flag. by Benjamin Kramer · 14 years ago
  20. e5da3e6 makes vec_step operator work when AltiVec support is enabled by Anton Yartsev · 14 years ago
  21. f899af6 Add pre- and post-increment/decrement operators to CharUnits. by Ken Dyck · 14 years ago
  22. af13d5b Rename class 'CFGReachabilityAnalysis' to 'CFGReverseBlockReachabilityAnalysis'. by Ted Kremenek · 14 years ago
  23. d2427dd Add libclang hook 'clang_toggleCrashRecovery()', which provides a mechanism for a client to enable/disable CrashRecovery within libclang function calls. by Ted Kremenek · 14 years ago
  24. 207f4d8 Add support for language-specific address spaces. On top of that, by Peter Collingbourne · 14 years ago
  25. 2ed4228 Lexer: Add extremely limited support for -traditional-cpp, ignoring BCPL by Daniel Dunbar · 14 years ago
  26. ac0659a Driver: Give SelectTool access to the action inputs. by Daniel Dunbar · 14 years ago
  27. 7dbafb3 Add FileManager::getNoncachedStatValue, which will resolve relative paths against the working directory specified in the file system options. by Anders Carlsson · 14 years ago
  28. d6a49bb Add an opt-in -Wheader-hygiene, which current diagnoses the use of by Douglas Gregor · 14 years ago
  29. 7f0a915 Fixed inconsistency when adding TemplateParameterListsInfo. by Abramo Bagnara · 14 years ago
  30. 3209669 The Darwin kernel does not provide useful guard variable support. by John McCall · 14 years ago
  31. a085da8 Fix PR9488: 'auto' type substitution can fail (for instance, if it creates a reference-to-void type). Don't crash if it does. by Richard Smith · 14 years ago
  32. 0a65f94 Rename -Wuninitialized-maybe to -Wconditional-uninitialized. by Ted Kremenek · 14 years ago
  33. 0daaf32 Use ElaboratedType also for C. by Abramo Bagnara · 14 years ago
  34. eef7ac5 Detect attempts to provide a specialization of a function within a by Douglas Gregor · 14 years ago
  35. 3cd0128 Having FileManager::getFile always open the file, brought much consternation and leaking of file descriptors. by Argyrios Kyrtzidis · 14 years ago
  36. db2eae6 Clean up our handling of template-ids that resolve down to a single by Douglas Gregor · 14 years ago
  37. 7839feb Remove a duplicate language feature by Peter Collingbourne · 14 years ago
  38. b5142bb Add a 'RawPath' parameter to the PPCallbacks interface. This allows by Chandler Carruth · 14 years ago
  39. c9977d0 Make sure that we always pop a function's scope *before* we call by Douglas Gregor · 14 years ago
  40. 250e7a7 When we're inserting a synthesized label declaration for a by Douglas Gregor · 14 years ago
  41. 24f4674 Added missing methods to get Designators source range. by Abramo Bagnara · 14 years ago
  42. db9e9e6 Remove warning for null characters in CFString literals. Clang handles them just fine, and GCC 4.2 doesn't warn here either. by Ted Kremenek · 14 years ago
  43. 99439d4 Implement a hack to work around the changing exception specification of operator new in C++0x. by Sebastian Redl · 14 years ago
  44. d0956fc Remove duplicate group definition that snuck in due to a merge conflict. by Ted Kremenek · 14 years ago
  45. 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 · 14 years ago
  46. 76709bf Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 14 years ago
  47. f7bafc7 Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 14 years ago
  48. 6f34213 Rename UninitializedValuesV2 to UninitializedValues. by Ted Kremenek · 14 years ago
  49. f3f5379 Remove old UninitializedValues analysis. by Ted Kremenek · 14 years ago
  50. 7cbc558 When synthesizing a label declaration based on a goto statement that by Douglas Gregor · 14 years ago
  51. 9fc90c1 Incorporate source ranges for RangeBugReport when coelescing reports into equivalence classes. by Ted Kremenek · 14 years ago
  52. a4fdbfa Block return type of the initialized must be by Fariborz Jahanian · 14 years ago
  53. 2e2468e Get rid of the static FileManager::FixupRelativePath. by Anders Carlsson · 14 years ago
  54. d05c200 Change GetNullarySelector and GetUnarySelector to take a StringRef. by Anders Carlsson · 14 years ago
  55. 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 · 14 years ago
  56. 90ba78c Place duplicate argument declaration in in by Fariborz Jahanian · 14 years ago
  57. caa35e4 Revert "Disable inherited constructors for 2.9." by Sebastian Redl · 14 years ago
  58. a808c54 Disable inherited constructors for 2.9. by Sebastian Redl · 14 years ago
  59. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 14 years ago
  60. 796aa44 Forgotten part of previous commit. by Abramo Bagnara · 14 years ago
  61. 06dec89 Renamed OffsetOfNode::getRange to getSourceRange for uniformity. by Abramo Bagnara · 14 years ago
  62. fadb53b Fixes for some more expressions containing function templateids that by Douglas Gregor · 14 years ago
  63. 6f4596c Implement a hack intended to allow Clang to parse libstdc++ 4.5's by Douglas Gregor · 14 years ago
  64. f4f7cb8 OpenCL: if double precision floating point constant encountered by Peter Collingbourne · 14 years ago
  65. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 14 years ago
  66. c57c17d Avoid do drop outer template parameter lists on the floor. by Abramo Bagnara · 14 years ago
  67. 0d28d36 When doing reachability analysis for warnings issued under DiagRuntimeBehavior, don't construct a ParentMap or CFGStmtMap. by Ted Kremenek · 14 years ago
  68. 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 · 14 years ago
  69. 975cc64 Revert r127206 "Detect attempts to provide a specialization of a function within by Daniel Dunbar · 14 years ago
  70. 6147806 Lookup selector in protocol list of qualified objc type by Fariborz Jahanian · 14 years ago
  71. b0f4b9a Introduce '-chain-include' option to specify headers that will be converted to chained PCHs in memory by Argyrios Kyrtzidis · 14 years ago
  72. ba877ad Fixed InnerLocStart. by Abramo Bagnara · 14 years ago
  73. 02b3774 include/clang/Basic/BuiltinsX86.def: __builtin_ia32_crc32**() should be defined to take unsigned args and to return unsigned value. by NAKAMURA Takumi · 14 years ago
  74. 86f436f include/clang/Makefile: [PR2928] "make install" may install include files along explicit pattern, not to install CMake's building stuff. by NAKAMURA Takumi · 14 years ago
  75. eecf5fa Add a bit to ParmVarDecl indicating whether the parameter undergoes by John McCall · 14 years ago
  76. 299a4a9 Add 'OverridenFilesKeepOriginalName' field in SourceManager which if true the SourceManager by Argyrios Kyrtzidis · 14 years ago
  77. cf33333 static analyzer: Fix use-after-free bug in RegionStore involving LazyCompoundValueData not reference counting Store objects. by Ted Kremenek · 14 years ago
  78. b77cab9 Clarify the context in which an Objective-C type name is being parsed by Douglas Gregor · 14 years ago
  79. f525160 Teach libclang's token-annotation logic about context-sensitive by Douglas Gregor · 14 years ago
  80. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 14 years ago
  81. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 14 years ago
  82. f2cf562 Fixed bitfields source range. by Abramo Bagnara · 14 years ago
  83. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 14 years ago
  84. 834e3f6 Fix my earlier commit to work with escaped newlines and leave breadcrumbs by John McCall · 14 years ago
  85. 2792fa5 objc_gc wants a pointer type, not a function type; give it a more appropriate by John McCall · 14 years ago
  86. 30900da Add an API call to retrieve the spelling data of a token from its SourceLocation. by John McCall · 14 years ago
  87. db93fde Detect attempts to provide a specialization of a function within a by Douglas Gregor · 14 years ago
  88. d52e8b8 Change diagnostic message from "Extension" to "ExtWarn" to find more problems with missing semicolons. by Carl Norum · 14 years ago
  89. d97cec3 g++ is more permissive regarding flexible arrays. by Argyrios Kyrtzidis · 14 years ago
  90. cc20945 Support explicit template specialization and instantiation for members by Douglas Gregor · 14 years ago
  91. c2f3e7f The conditional needs to be pushed before the branch. Make the test less by John McCall · 14 years ago
  92. d47aad9 Add a non-static FixupRelativePath to FileManager. by Anders Carlsson · 14 years ago
  93. 65f7165 Redo part of r127137: by Joerg Sonnenberger · 14 years ago
  94. e6ec11a Remove the AST printer (-ast-print-xml), which is too incomplete and by Douglas Gregor · 14 years ago
  95. 9ade4ae If called as *cpp or *cpp-[^-]*, run only the preprocessor. If no by Joerg Sonnenberger · 14 years ago
  96. af036a6 Convert FileManager::FixupRelativePath over to using PathV2. by Anders Carlsson · 14 years ago
  97. eff1dbe We may fail to map a declaration in a template to its instantiated by Douglas Gregor · 14 years ago
  98. 841b238 Rename the type argument for the iboutletcollection attribute to not by Douglas Gregor · 14 years ago
  99. c850578 Write CXX base specifier offsets for chained ASTs. by Anders Carlsson · 14 years ago
  100. ec356c3 xpose HeaderSearch::SearchDirs to tools,s, from Paul Holden by Douglas Gregor · 14 years ago