1. 641b98b Driver: Factor out some code for handling the C++ standard library. by Daniel Dunbar · 14 years ago
  2. 1a2cd4f Simplify. by Daniel Dunbar · 14 years ago
  3. 555c77a Don't divide-by-zero in RegionStoreManager::getSizeInElements() when getting the size of a VLA. We don't track VLA extents yet, by Ted Kremenek · 14 years ago
  4. c4e1a68 RHS of property expression assignment requires by Fariborz Jahanian · 14 years ago
  5. 5833b0b When marking the declarations in a default argument expression as by Douglas Gregor · 14 years ago
  6. 4178b57 Eliminate the default case in the expression-classification code, so by Douglas Gregor · 14 years ago
  7. c384636 Tweak this assert. by John McCall · 14 years ago
  8. 68625cf Rename 'MaxLoop' to 'MaxVisit' in AnalysisManager to more correctly reflect that we aborted analysis may not necessarily be due to a loop. by Tom Care · 14 years ago
  9. edeb6c9 The paired 'operator delete' for a placement 'operator new' is always a by John McCall · 14 years ago
  10. 7d8647f Implement the EH cleanup to call 'operator delete' if a new-expression throws by John McCall · 14 years ago
  11. 44f8ef1 Fix CFGBuilder crash reported in PR 8141. by Ted Kremenek · 14 years ago
  12. 4ada2ca Fix VLA miscompilation. by Argyrios Kyrtzidis · 14 years ago
  13. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  14. fe255bc Remove from the CFG the half-implemented support for scoping information. We decided that scope information doesn't belong in the CFG at all, since it is a lexical construct. by Ted Kremenek · 14 years ago
  15. 08295a5 Don't crash when using type traits on a class with a constructor template. by Sebastian Redl · 14 years ago
  16. 751025d Remove CXXRecordDecl::getDefaultConstructor(), an inherently unsafe function due to lazy declaration of default constructors. Now that __has_nothrow_constructor doesn't use it anymore, part of PR8101 is fixed. by Sebastian Redl · 14 years ago
  17. 5f4e899 Have __has_nothrow_copy use Sema's lookup routines. This fixes the problem with not finding implicitly declared copy constructors, part of PR8107. by Sebastian Redl · 14 years ago
  18. 0dfd848 Eagerly evaluate type traits in Sema instead of lazily in AST. They actually need Sema access to be correct, fixes coming up. by Sebastian Redl · 14 years ago
  19. 4076dac When applying 'delete' on a pointer-to-array type match GCC and EDG behavior and treat it as 'delete[]'. by Argyrios Kyrtzidis · 14 years ago
  20. f1b8911 Remove the trivial setters from CXXDeleteExpr. by Argyrios Kyrtzidis · 14 years ago
  21. 1034170 Fix a typo noted by Gabor by Douglas Gregor · 14 years ago
  22. fb55031 Block description for trivial block literals have by Fariborz Jahanian · 14 years ago
  23. 99a8ca0 Fix C++ PCH issue. by Argyrios Kyrtzidis · 14 years ago
  24. 8fed4b4 Avoid setters in ASTDeclReader::VisitClassTemplatePartialSpecializationDecl. by Argyrios Kyrtzidis · 14 years ago
  25. 586c715 Avoid setters in ASTDeclReader::VisitClassTemplateSpecializationDecl. by Argyrios Kyrtzidis · 14 years ago
  26. 8b996b8 Avoid setters in ASTDeclReader::VisitCXXRecordDecl. by Argyrios Kyrtzidis · 14 years ago
  27. 4635845 Congruent diagnostic for void* arithmetic. by Abramo Bagnara · 14 years ago
  28. 2c5399f Parentheses around address non-type template argument is demoted to an extension warning. by Abramo Bagnara · 14 years ago
  29. 78c057e Don't assert when attempting to take the address of an overloaded by Douglas Gregor · 14 years ago
  30. 8fcc516 When performing overload resolution, only compare the final conversion by Douglas Gregor · 14 years ago
  31. c6dbc3f Diagnose the instantiation of variables (including static data by Douglas Gregor · 14 years ago
  32. da0fd9a Don't complain about useless user-defined conversion functions when by Douglas Gregor · 14 years ago
  33. a4d5de5 When diagnosing C++ [temp.expl.spec]p3 in C++98/03 mode, downgrade the by Douglas Gregor · 14 years ago
  34. 121dc9a Implement C++0x semantics for [temp.expl.spec]p2, which loosens the by Douglas Gregor · 14 years ago
  35. 8dc3abc Add basic support for Microsoft enum forward declaration. by Francois Pichet · 14 years ago
  36. 661b493 Implement the "note" in C++ [over.built]p1, which is actually meant to by Douglas Gregor · 14 years ago
  37. 5dde160 Don't perform integral promotions from an incompletion enumeration by Douglas Gregor · 14 years ago
  38. 4fcf5b2 Teach the EvaluatedExprVisitor and its client, which marks by Douglas Gregor · 14 years ago
  39. 8023030 Augment -ftrapv to check for divide by zero, mod by zero, and INT_MIN % -1. by Chris Lattner · 14 years ago
  40. be0f7bd When parsing default function arguments, do not mark any declarations by Douglas Gregor · 14 years ago
  41. 424668c The two libclang crash-recovery tests that involve precompiled by Douglas Gregor · 14 years ago
  42. 2cd4fd4 If we fail to create a temporary file for the precompiled preamble, by Douglas Gregor · 14 years ago
  43. 0d155a5 add latest gentoo gcc path by Nuno Lopes · 14 years ago
  44. c6cb2b0 Tweak GetPreamblePCHPath() to more closely match the behavior of the by Douglas Gregor · 14 years ago
  45. d0a57d5 Disable cxa_atexit by default on MingW. Patch by Dimitry Andric! by Anton Korobeynikov · 14 years ago
  46. 28709c1 CMake: Fix mingw32 build. by Michael J. Spencer · 14 years ago
  47. c5904b4 Fixes an obscure bug in importd block variable layout by Fariborz Jahanian · 14 years ago
  48. 0b34cf7 Test destructors in delete expressions and of temporaries for throwing. by Sebastian Redl · 14 years ago
  49. 4e63564 Support in-class initialization of static const floating-point data members. by John McCall · 14 years ago
  50. 5221d8f Address Doug's comments. by Sebastian Redl · 14 years ago
  51. fe6834a Make sure we're producing a newline in the preprocessed output before by Douglas Gregor · 14 years ago
  52. bd7c849 Eli helped me understand how evaluation contexts work. by Sebastian Redl · 14 years ago
  53. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  54. 98294de Implement CXXNoexceptExpr codegen. by Sebastian Redl · 14 years ago
  55. 6b219d0 Serialization support for CXXNoexceptExpr. by Sebastian Redl · 14 years ago
  56. 295995c First version of a testcase, plus fixes. by Sebastian Redl · 14 years ago
  57. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 14 years ago
  58. 02bc21a Parse the noexcept operator and stub out sema. by Sebastian Redl · 14 years ago
  59. 369e51f Implement Expr::CanThrow, a function that applies the noexcept operator rules to expressions. by Sebastian Redl · 14 years ago
  60. 2001215 Make CallExpr::getCalleeDecl look through pointer derefs. by Sebastian Redl · 14 years ago
  61. 0853c7f Polish diagnostics for null dereferences via ObjC ivar accesses. Finishes up <rdar://problem/6352035>. by Ted Kremenek · 14 years ago
  62. 0339d72 IRGen fix for using property-dot syntax to pass by Fariborz Jahanian · 14 years ago
  63. 5726d40 Support strlen() and __builtin_strlen() as constant expressions with by Douglas Gregor · 14 years ago
  64. 942e24d Add checker implementation for my previous commit! by Ted Kremenek · 14 years ago
  65. 4f6aa77 Implement: <rdar://problem/6351970> rule request: warn if @synchronized mutex can be nil by Ted Kremenek · 14 years ago
  66. 4beaa9f Add ObjCAtSynchronizedStmt to the CFG and add GRExprEngine support (PreVisit for checkers). by Ted Kremenek · 14 years ago
  67. 52d861c Added AnalyzerStatsChecker, a path sensitive check that reports visitation statistics about analysis. Running clang with the -analyzer-stats flag will emit warnings containing the information. We can then run a postanalysis script to take this data and give useful information about how much the analyzer missed in a project. by Tom Care · 14 years ago
  68. 4088ec0 property reference expression used on lhs of assignment by Fariborz Jahanian · 14 years ago
  69. 818b433 Clean up obtuse wording of checker diagnostic of using an uninitialized value in a function call. by Ted Kremenek · 14 years ago
  70. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 14 years ago
  71. 748de8e Driver/Darwin: Make the compilation object available in AddLinkArgs. by Daniel Dunbar · 14 years ago
  72. a67e03f Teach libclang to walk the base and member initializers of a by Douglas Gregor · 14 years ago
  73. fee1add Driver: Mark function as nounwind when -mkernel or -fapple-kext is present. by Daniel Dunbar · 14 years ago
  74. 61f52bd Use FindReportInEquivalenceClass to identify all the nodes used for the trimmed graph (in BugReporter). This fixes a problem where a leak that happened to occur on both an exit() path and a non-exit() path was getting reported with the exit() path (which users don't care about). by Ted Kremenek · 14 years ago
  75. 80c26f4 Frontend: Add -cxx-system-include option which can be used to specify an by Daniel Dunbar · 14 years ago
  76. d11ee7f Fix indentation. by Daniel Dunbar · 14 years ago
  77. 83cb942 Simplify template instantiation for C++ exception declarations, by Douglas Gregor · 14 years ago
  78. ba48d6a Eliminate some unnecessary uses of TreeTransform::TemporaryBase. There by Douglas Gregor · 14 years ago
  79. a1a0478 Eliminate the comma locations from all of the Sema routines that deal by Douglas Gregor · 14 years ago
  80. 3d37c0a Add proper type-source information to UnaryTypeTraitExpr, including by Douglas Gregor · 14 years ago
  81. ec9bf47 Clean up CMake dependencies by Douglas Gregor · 14 years ago
  82. f0e34ed Remove unused variable. by Benjamin Kramer · 14 years ago
  83. a626a3d Fix C++ PCH issue. by Argyrios Kyrtzidis · 14 years ago
  84. 89b0658 do not bind temporaries to non-const references by Gabor Greif · 14 years ago
  85. 96ebad6 Rename GRState::getSVal() -> getRawSVal() and getSimplifiedSVal() -> getSVal(). by Ted Kremenek · 14 years ago
  86. 47bb27f Fix indentation. by Ted Kremenek · 14 years ago
  87. c82faca Check format strings when a called function has more than one FormatAttr (one for 'scanf' and one for 'printf'). Fixes <rdar://problem/8409437>. by Ted Kremenek · 14 years ago
  88. 95355bb It appears that technically a null format string is not warned under -Wformat-nonliteral, as by Ted Kremenek · 14 years ago
  89. 4fe6441 Avoid redundant recursive calls in SemaCheckStringLiteral by just updating the expression by Ted Kremenek · 14 years ago
  90. e0ba9d1 Remove tabs I accidentally introduced. by Ted Kremenek · 14 years ago
  91. be39a56 Remove stray ';' and convert tabs to spaces. by Ted Kremenek · 14 years ago
  92. b062795 Simplified reachability checking in IdempotentOperationChecker and added a helper function for path display. by Tom Care · 14 years ago
  93. 1db5d14 Relax __attribute_((nonnull)) checking to allow the attribute on functions with no pointer arguments. GCC doesn't warn by Ted Kremenek · 14 years ago
  94. 4d3175c Static analyzer fix: <rdar://problem/5880430> Switch on enum should not consider default case live if all enum values are covered by Ted Kremenek · 14 years ago
  95. 8197982 Block ivar layout must assume that the 'isa' by Fariborz Jahanian · 14 years ago
  96. 8caec84 Enhance -Wunreachable-code to not consider the 'default:' branch of a switch statement live if a switch on an enum value has by Ted Kremenek · 14 years ago
  97. 90b828a Enhance -Wreturn-type to not warn when control-flow is most likely limited by a switch statement explicitly covering by Ted Kremenek · 14 years ago
  98. ee7f84d Add 'filtered_pred_iterator' and 'filtered_succ_iterator' to CFGBlock. This allows a client by Ted Kremenek · 14 years ago
  99. 780d885 Initialize 'AllEnumCasesCovered' in SwitchStmt's constructor. by Ted Kremenek · 14 years ago
  100. 559fb55 When building SwitchStmts in Sema, record whether all the enum values of a switch(enum) where by Ted Kremenek · 14 years ago