1. 33c530e Refine the vcall for a function that is defined in a virtual base by Mike Stump · 15 years ago
  2. 1053d24 static analyzer: refactor checking logic for returning the address of a stack variable or a garbage by Ted Kremenek · 15 years ago
  3. b653c52 If we have a C-style cast, functional cast, or a static_cast to a by Douglas Gregor · 15 years ago
  4. b7a86f5 When we encounter a derived-to-base conversion when performing an by Douglas Gregor · 15 years ago
  5. 4c0cea2 Minor cleanup of my last patch. by Fariborz Jahanian · 15 years ago
  6. 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
  7. 966256a This patch implements Sema for clause 13.3.3.1p4. by Fariborz Jahanian · 15 years ago
  8. 599837a Convert file over to checking the .ll file for codegen. Also, we by Mike Stump · 15 years ago
  9. 99ff8da Update clang web pages with respect to Windows by John Thompson · 15 years ago
  10. 4912c34 Make sure that EnumConstantDecls always get a type, even when they have type-dependent initializers. by Douglas Gregor · 15 years ago
  11. 1fbf1f0 Strip off the /clang/tools/clang at the end of the Subversion URL, if it's there by Douglas Gregor · 15 years ago
  12. 40d1bb6 Eliminate tabls by John Thompson · 15 years ago
  13. 9099e7b clean up integer preprocessor type definitions, patch by Ken Dyck! by Chris Lattner · 15 years ago
  14. 632d772 Make ASTContext::getIntWidth return 1 for all boolean type variations, not just for the unqualified, unaliased bool. by Sebastian Redl · 15 years ago
  15. 732429c The signed/unsigned checker should not warn for value-dependent expressions, and should especially not try to evaluate them. by Sebastian Redl · 15 years ago
  16. c7621a6 Be a little more careful when trying to extract a TypeDecl from a enum/class/struct/union specifier; in invalid code, we may also see ClassTemplateDecls. by Douglas Gregor · 15 years ago
  17. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  18. c2f3882 De-FIXME a test by Douglas Gregor · 15 years ago
  19. 6e82475 Don't allow definitions of array variables without some size information in C++. Fixed PR5401 by Sebastian Redl · 15 years ago
  20. 2e09db7 Enable debug info for global variables at -O1+ by Devang Patel · 15 years ago
  21. 6ddf478 Adds doxygen comment for HasSideEffects method. by Fariborz Jahanian · 15 years ago
  22. 393c247 Added support for static variables which require by Fariborz Jahanian · 15 years ago
  23. 9c4b838 Eliminate some false positives due to a thinko in the "'blah' is by Douglas Gregor · 15 years ago
  24. 5114eca Add Ubuntu 9.10 libstdc++ install location. by Sebastian Redl · 15 years ago
  25. a65b551 When collecting types for built-in candidates, make arrays decay to pointers. Otherwise, subscripting an array leads to no candidates at all. Fixes PR5360. by Sebastian Redl · 15 years ago
  26. b258d8f Add clang_site_config user variable, so that extra tests (e.g., utils/C++Syntax) by Daniel Dunbar · 15 years ago
  27. 923d56d Allow the element type of arrays to be incomplete in C++. by Sebastian Redl · 15 years ago
  28. 2ac6723 Parse C++0x constexpr. Test case follows when this does something useful. by Sebastian Redl · 15 years ago
  29. ff87603 Don't run anything other than the compiler in these tests. by Daniel Dunbar · 15 years ago
  30. 393896f Fixed two places where we needed to force completion of a type by Douglas Gregor · 15 years ago
  31. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  32. ae78447 Tweak wording and classifications of analyzer diagnostics. by Ted Kremenek · 15 years ago
  33. e2d78fe Update checker build. by Ted Kremenek · 15 years ago
  34. 6516813 Add EXTRA_TESTDIRS variable for specifying additional test directories. by Daniel Dunbar · 15 years ago
  35. 03e777e References can't be zero; omit zero check for return value adjustments by Mike Stump · 15 years ago
  36. 7c276b8 Refine covariant return value adjustments for thunks when null by Mike Stump · 15 years ago
  37. 99faefd Testcase for a recent checkin. by Mike Stump · 15 years ago
  38. 941e3f3 Update. by Mike Stump · 15 years ago
  39. 968db33 Refine layout for indirect virtual base classes. by Mike Stump · 15 years ago
  40. 644aa9a Fix 80-col violation. by Mike Stump · 15 years ago
  41. efcbe94 Replace DiagnosticClient::setLangOptions with {Begin,End}SourceFile, and clarify by Daniel Dunbar · 15 years ago
  42. efceabd Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&, and simplify. by Daniel Dunbar · 15 years ago
  43. eb6aeb5 Remove unused SetPreprocessor method. by Daniel Dunbar · 15 years ago
  44. b01f06c AnalysisManager: Don't rely on PathDiagnosicClients flushing their diagnostics when they are destroyed. by Ted Kremenek · 15 years ago
  45. ad451cc Remove clang-cc -html-diags option, this doesn't fit in well and we get plenty by Daniel Dunbar · 15 years ago
  46. b697a4e Acting on Daniel's nagging, remove PathDiagnosticClientFactory() and by Ted Kremenek · 15 years ago
  47. ff6912b Make html::{SyntaxHighlight,HighlightMacros} take a const Preprocessor. by Daniel Dunbar · 15 years ago
  48. c322209 Make LookUpIdentifierInfo const. This makes the Identifiers table mutable and is by Daniel Dunbar · 15 years ago
  49. 3da736c StringRefize Preprocessor::getIdentifierInfo. by Daniel Dunbar · 15 years ago
  50. 4cc1a25 Simplify. by Daniel Dunbar · 15 years ago
  51. 64acf1d CreatePreprocessor cannot fail by Daniel Dunbar · 15 years ago
  52. 6ca7cfb When instantiating a UnaryOperator, allow the resulting expression to by Douglas Gregor · 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. b1c2ea5 Make sure to grab CVR qualifiers from the canonical type. ARGH! by Douglas Gregor · 15 years ago
  56. 90b1827 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 15 years ago
  57. 593c41f Turn if chain into switch. by Daniel Dunbar · 15 years ago
  58. 3926a1f Tweak formatting. by Daniel Dunbar · 15 years ago
  59. 8a4386b When instantiating a MemberExpr, be sure to instantiate the by Douglas Gregor · 15 years ago
  60. 6aee621 Comments, formatting. Based on patch by Brandon Pearcy! by John McCall · 15 years ago
  61. 06dcf6b A simple reordering of the definitions in stdint.h and by Chris Lattner · 15 years ago
  62. b419004 Diagnose using a field to initialize itself. Patch by Brandon Pearcy! by John McCall · 15 years ago
  63. 43d8863 When starting a C++ member access expression, make sure to compute the by Douglas Gregor · 15 years ago
  64. 655fe9b ignore two new -W flags, patch by Tom Jablin! by Chris Lattner · 15 years ago
  65. d6b5f13 Give DeclarationName's operator< a more predictable, useful ordering by Douglas Gregor · 15 years ago
  66. 4188aed Fixed for running on Windows. by John Thompson · 15 years ago
  67. ff52439 Fix a little canonical-types issue with non-type template arguments. by Douglas Gregor · 15 years ago
  68. 938963f InitializePreprocessor cannot fail. by Daniel Dunbar · 15 years ago
  69. 468fe24 Move -undef flag into PreprocessorInitOptions by Daniel Dunbar · 15 years ago
  70. 105aa51 Add code gen for pointer-to-member function in ctor's initializer. Fixes pr5178. by Fariborz Jahanian · 15 years ago
  71. 8623541 Properly replace (cxxscope, template-id) annotation tokens with a by Douglas Gregor · 15 years ago
  72. 7799621 This patch extends CleanupScope to support destruction by Fariborz Jahanian · 15 years ago
  73. 1fe6b91 Don't try to check the initialization of fields with dependent by Douglas Gregor · 15 years ago
  74. 87c12c4 Store the unresolved class type in MemberPointerType's Class field, by Douglas Gregor · 15 years ago
  75. 7af5d19 this test has started failing due to an optimizer change. Clang tests by Chris Lattner · 15 years ago
  76. 1cf7f0a Eliminate the "old" ways of parsing operator-function-ids and by Douglas Gregor · 15 years ago
  77. 12c118a Switch parsing of using declarations over to ParseUnqualifiedId. by Douglas Gregor · 15 years ago
  78. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 15 years ago
  79. c86a6e9 When performing template instantiation (transformation) of by Douglas Gregor · 15 years ago
  80. ac9cf4d Fix commento. by Daniel Dunbar · 15 years ago
  81. 29d63fc Update CMake. by Daniel Dunbar · 15 years ago
  82. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  83. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  84. 294691e Fix indentation. by Daniel Dunbar · 15 years ago
  85. eace874 Factor out a diagnostic options class. by Daniel Dunbar · 15 years ago
  86. 0360af5 Add FIXME. by Ted Kremenek · 15 years ago
  87. 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
  88. bf960cb Add mising #ifdef guards. by Ted Kremenek · 15 years ago
  89. 9112b93 Diagnose the use of 'fastcall' on functions without prototypes or with by John McCall · 15 years ago
  90. d00f200 Diagnose __builtin_offsetof on incomplete types. Fixes rdar://problem/7222956 by John McCall · 15 years ago
  91. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
  92. 05a2338 Merge ZeroSizedVLAChecker and UndefSizedVLAChecker. by Zhongxing Xu · 15 years ago
  93. 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
  94. 79d5768 Fix 80-col violations. by Mike Stump · 15 years ago
  95. ca1bdd7 Implement support for parsing dependent template-ids that refer to by Douglas Gregor · 15 years ago
  96. d0fe536 Split out return adjustments in thunks from this adjustment in thunks by Mike Stump · 15 years ago
  97. 082fb9a Use unsigned char instead of unsigned : 8 to make the optimizer happier. by Daniel Dunbar · 15 years ago
  98. 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
  99. 9bef4d7 Misc cleanups. by Mike Stump · 15 years ago
  100. cb9b010 Test case for recent checkin. by Mike Stump · 15 years ago