1. 3451e92 Changed error for nested type qualifier mismatch to by Fariborz Jahanian · 15 years ago
  2. 89c49f0 Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass of by Douglas Gregor · 15 years ago
  3. e29709f Add CompilerInvocation object, to capture all the options one needs to invoke by Daniel Dunbar · 15 years ago
  4. c19aa99 Stub out a few more warning groups. by Eli Friedman · 15 years ago
  5. 80c30da Add additional note to mark the cause of synthesized constructors. Mark by Eli Friedman · 15 years ago
  6. 8f4c59e Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen by Eli Friedman · 15 years ago
  7. ef0cef6 Introduce CXString type and associated functions clang_getCString() and clang_disposeString(). by Steve Naroff · 15 years ago
  8. 4f3dc69 Add checker for CWE-588: Attempt to Access Child of a Non-structure Pointer. by Zhongxing Xu · 15 years ago
  9. b10a7c2 Add checker for CWE-587: Assignment of a Fixed Address to a Pointer. by Zhongxing Xu · 15 years ago
  10. 8e2a9d8 Remove dead code. by Zhongxing Xu · 15 years ago
  11. 49c16da Unify the codepaths used to verify base and member initializers for explicitly by Eli Friedman · 15 years ago
  12. 28a109f Add a checker for CWE-467: Use of sizeof() on a Pointer Type. by Zhongxing Xu · 15 years ago
  13. c9132b6 Test commit - minor terminology change to my recent patch suggested by John McCall by Sean Hunt · 15 years ago
  14. 36a862f Patch to gives an error that at least points users in the direction of the error, rather by Fariborz Jahanian · 15 years ago
  15. dc767a1 Support -Wshorten-64-to-32 for integer types only, which seems to satisfy the by John McCall · 15 years ago
  16. 31d8cad Use SaveAndRestore to simplify logic in LiveVariables::runOnAllBlocks(). Patch by Kovarththanan Rajaratnam! by Ted Kremenek · 15 years ago
  17. 63c8b77 Add HeaderSearchOptions class, for packaging the information needed to by Daniel Dunbar · 15 years ago
  18. e166582 Lift InitHeaderSearch::AddEnvVarPaths logic higher. by Daniel Dunbar · 15 years ago
  19. 5c5758b Formatting fixes. by Daniel Dunbar · 15 years ago
  20. 8863b98 Rename PreprocessorInitOptions to PreprocessorOptions for consistency, and fix by Daniel Dunbar · 15 years ago
  21. ae16233 Remove Checker::CheckType() (and instead using CheckerVisitor::PreVisitDeclStmt()), and refactor VLASizeChecker to have only one Checker subclass (not two) and to not use the node builders directly (and instead use the newer CheckerContext). by Ted Kremenek · 15 years ago
  22. 680523a Implement -Wconversion. Off by default, in the non-gcc group. There's by John McCall · 15 years ago
  23. c4df6d2 Add basic code completion support for ObjC messages. by Steve Naroff · 15 years ago
  24. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  25. 84b3595 Make the VLASizeChecker implementation private, and its creation only known to GRExprEngineInternalChecks.cpp. by Ted Kremenek · 15 years ago
  26. 36df58a Make the implementation of DivZeroChecker private. by Ted Kremenek · 15 years ago
  27. 7d62a8f Don't warn -Wsign-compare if we're in an unevaluated context, and fixed by John McCall · 15 years ago
  28. abbbfd9 add some const qualifiers, patch by Kovarththanan Rajaratnam! by Chris Lattner · 15 years ago
  29. ceeb02d Add a checker for CWE-466: Return of Pointer Value Outside of Expected Range. by Zhongxing Xu · 15 years ago
  30. 4c26207 Create a warning group "non-gcc" for diagnostics which are not enabled by John McCall · 15 years ago
  31. 3f0b5fd Rework the fix-it hint for code like by Douglas Gregor · 15 years ago
  32. 35de813 Turn off -Wsign-compare warnings by default by Douglas Gregor · 15 years ago
  33. 1053d24 static analyzer: refactor checking logic for returning the address of a stack variable or a garbage by Ted Kremenek · 15 years ago
  34. 2c791bd Minor cleanup: use BuiltinBug (which will soon be renamed) for DeferenceChecker and friends so that they always report the same bug type. by Ted Kremenek · 15 years ago
  35. 40d1bb6 Eliminate tabls by John Thompson · 15 years ago
  36. 9099e7b clean up integer preprocessor type definitions, patch by Ken Dyck! by Chris Lattner · 15 years ago
  37. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  38. 6e82475 Don't allow definitions of array variables without some size information in C++. Fixed PR5401 by Sebastian Redl · 15 years ago
  39. 6ddf478 Adds doxygen comment for HasSideEffects method. by Fariborz Jahanian · 15 years ago
  40. 393c247 Added support for static variables which require by Fariborz Jahanian · 15 years ago
  41. 9c4b838 Eliminate some false positives due to a thinko in the "'blah' is by Douglas Gregor · 15 years ago
  42. 2ac6723 Parse C++0x constexpr. Test case follows when this does something useful. by Sebastian Redl · 15 years ago
  43. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  44. ae78447 Tweak wording and classifications of analyzer diagnostics. by Ted Kremenek · 15 years ago
  45. efcbe94 Replace DiagnosticClient::setLangOptions with {Begin,End}SourceFile, and clarify by Daniel Dunbar · 15 years ago
  46. efceabd Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&, and simplify. by Daniel Dunbar · 15 years ago
  47. eb6aeb5 Remove unused SetPreprocessor method. by Daniel Dunbar · 15 years ago
  48. b01f06c AnalysisManager: Don't rely on PathDiagnosicClients flushing their diagnostics when they are destroyed. by Ted Kremenek · 15 years ago
  49. b697a4e Acting on Daniel's nagging, remove PathDiagnosticClientFactory() and by Ted Kremenek · 15 years ago
  50. ff6912b Make html::{SyntaxHighlight,HighlightMacros} take a const Preprocessor. by Daniel Dunbar · 15 years ago
  51. c322209 Make LookUpIdentifierInfo const. This makes the Identifiers table mutable and is by Daniel Dunbar · 15 years ago
  52. 3da736c StringRefize Preprocessor::getIdentifierInfo. by Daniel Dunbar · 15 years ago
  53. 50ecd15 Modify GRExprEngine::EvalBind() to take both a "store expression" and by Ted Kremenek · 15 years ago
  54. 45aa455 Implement -Wsign-compare, or at least the actual comparison part of it. by John McCall · 15 years ago
  55. 90b1827 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 15 years ago
  56. 3926a1f Tweak formatting. by Daniel Dunbar · 15 years ago
  57. b419004 Diagnose using a field to initialize itself. Patch by Brandon Pearcy! by John McCall · 15 years ago
  58. 655fe9b ignore two new -W flags, patch by Tom Jablin! by Chris Lattner · 15 years ago
  59. 938963f InitializePreprocessor cannot fail. by Daniel Dunbar · 15 years ago
  60. 468fe24 Move -undef flag into PreprocessorInitOptions by Daniel Dunbar · 15 years ago
  61. 1cf7f0a Eliminate the "old" ways of parsing operator-function-ids and by Douglas Gregor · 15 years ago
  62. 12c118a Switch parsing of using declarations over to ParseUnqualifiedId. by Douglas Gregor · 15 years ago
  63. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 15 years ago
  64. ac9cf4d Fix commento. by Daniel Dunbar · 15 years ago
  65. eace874 Factor out a diagnostic options class. by Daniel Dunbar · 15 years ago
  66. b107c4b Catch uses of undefined values when they are used in assignment, thus catching such bugs closer to the source. by Ted Kremenek · 15 years ago
  67. bf960cb Add mising #ifdef guards. by Ted Kremenek · 15 years ago
  68. 9112b93 Diagnose the use of 'fastcall' on functions without prototypes or with by John McCall · 15 years ago
  69. d00f200 Diagnose __builtin_offsetof on incomplete types. Fixes rdar://problem/7222956 by John McCall · 15 years ago
  70. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
  71. 05a2338 Merge ZeroSizedVLAChecker and UndefSizedVLAChecker. by Zhongxing Xu · 15 years ago
  72. 59876c2 Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. by Tanya Lattner · 15 years ago
  73. ca1bdd7 Implement support for parsing dependent template-ids that refer to by Douglas Gregor · 15 years ago
  74. 082fb9a Use unsigned char instead of unsigned : 8 to make the optimizer happier. by Daniel Dunbar · 15 years ago
  75. f6f56d4 Refactor StoreManager::BindDecl() to take a VarRegion* instead of a VarDecl*, and modify GRExprEngine::EvalBind() to handle decl initialization as well. This paves the way for adding "checker" visitation in EvalBind(). by Ted Kremenek · 15 years ago
  76. 1fb7d0c Change GRTransferFuncs::RegisterChecks() to take a GRExprEngine& instead of a BugReporter&. This paves the way for pulling some of the retain/release checker into a "Checker" class. by Ted Kremenek · 15 years ago
  77. df317bf Refine volatile handling, specifically, we must have the canonical by Mike Stump · 15 years ago
  78. 014e88d Parsing and semantic analysis for template-ids that name overloaded by Douglas Gregor · 15 years ago
  79. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  80. 2d1c214 Replace the code that parses member access expressions after "." or by Douglas Gregor · 15 years ago
  81. 6c94a6d Silence a warning by giving Parser::FieldCallback a virtual destructor, and by John McCall · 15 years ago
  82. d8ac057 Reorganize the parsing of decl groups / function definitions so that by John McCall · 15 years ago
  83. dc998c1 Merge NullDerefChecker.[h,cpp] and UndefDerefChecker.[h,cpp]. They are essentially two parts of the same check. by Ted Kremenek · 15 years ago
  84. 02a24ee Use ParseUnqualifiedId when parsing id-expressions. This eliminates by Douglas Gregor · 15 years ago
  85. 5206f0b Pull VLA size checker into its own files. by Zhongxing Xu · 15 years ago
  86. 54cb7cc Implement: <rdar://problem/6250216> Warn against using -[NSAutoreleasePool release] in GC mode by Ted Kremenek · 15 years ago
  87. d5925bd Move 'static inline' functions GetNullarySelector() and GetUnarySelector() from CFRefCount.cpp to ASTContext.h. These functions are likely to be generally useful. by Ted Kremenek · 15 years ago
  88. 94943b6 Pull AttrNonNullChecker into its own files. by Zhongxing Xu · 15 years ago
  89. 8958fff Pull UndefinedArgChecker into its own files. by Zhongxing Xu · 15 years ago
  90. 4f64e5f Pull BadCallChecker into its own files. by Zhongxing Xu · 15 years ago
  91. bdd563e Switch ParseStructDeclaration to a callback-based API. This will make by John McCall · 15 years ago
  92. 3f9a056 Introduce a new class, UnqualifiedId, that provides a parsed by Douglas Gregor · 15 years ago
  93. 0296c22 Remove GRExprEngine::CheckerVisitLocation(). It was only called in one place, so we inlined it in to GRExprEngine::EvalLocation(). by Ted Kremenek · 15 years ago
  94. a6f14e1 Property declared in continuation class can only be used to by Fariborz Jahanian · 15 years ago
  95. 92bd8c7 Added __has_include and __has_include_next. by John Thompson · 15 years ago
  96. cf9c789 Hopefully make gcc-4.0 happy with respect to the following warning: by Ted Kremenek · 15 years ago
  97. 3abf3ad Add "virtual" keywords for clarity. by Ted Kremenek · 15 years ago
  98. 3684bd4 Diagnose implementation of a property declared in a category by Fariborz Jahanian · 15 years ago
  99. df7c3b9 Fix the type of __builtin_expect, from Ed Schouten! by Douglas Gregor · 15 years ago
  100. 08b0e8d Add two missing CINDEX_LINKAGE uses, in libCIndex, from Kovarththanan by Douglas Gregor · 15 years ago