1. 5aba3eb Perform l2r conversions on delete operands before doing by John McCall · 13 years ago
  2. 71cba34 Make sure we update the static local decl address map when we are forced to rebuild a global because of the initializer. <rdar://problem/10957867>. by Eli Friedman · 13 years ago
  3. 8b42ab7 Make sure constant emission handles initializer lists with strings correctly. Part of <rdar://problem/10957867>. by Eli Friedman · 13 years ago
  4. 42f42c8 [AST] NestedNameSpecifier's ctor/dtor are trivial and should be inlined. by Daniel Dunbar · 13 years ago
  5. cd48592 [AST] Type::isVoidType() is trivial and should be inlined. by Daniel Dunbar · 13 years ago
  6. 3d13c5a [AST] Reduce Decl::getASTContext() calls. by Daniel Dunbar · 13 years ago
  7. 76aadc3 [analyzer] Implement basic path diagnostic pruning based on "interesting" symbols and regions. by Ted Kremenek · 13 years ago
  8. d95e0b8 [analyzer] Use call graph to determine order in which functions are analyzed. by Anna Zaks · 13 years ago
  9. 6625335 [analyzer] Rework inlining related command line options. by Anna Zaks · 13 years ago
  10. d277661 Call Graph: Only the root node is allowed to have an invalid Decl*. by Anna Zaks · 13 years ago
  11. 3376277 Fix a couple of issues with literal-operator-id parsing, and provide recovery by Richard Smith · 13 years ago
  12. 1e5bc4f Don't crash when a statement in a block is ill-formed but by John McCall · 13 years ago
  13. 49d5174 When checking the encoding of an 8-bit string literal, don't just check the by Richard Smith · 13 years ago
  14. 188158d Turn explicit construction of temporaries using initializer list syntax into CXXTemporaryObjectExprs, not just CXXConstructExprs, which have a worrying tendency to vanish. Fixes PR12167. by Sebastian Redl · 13 years ago
  15. 56757e9 Untangle getUnderlyingDeclImpl, no functionality change. by Benjamin Kramer · 13 years ago
  16. a50a5cd Remove stray semi-colon. by Daniel Dunbar · 13 years ago
  17. 7a8c758 [AST] APValue: Split the fast path of MakeUninit to be inline. by Daniel Dunbar · 13 years ago
  18. 6daffa5 [AST] Change NamedDecl::getUnderlyingDecl() to inline the fast (and incredibly common) path. by Daniel Dunbar · 13 years ago
  19. 0250393 Replace MarkVarRequired with a more generic by Rafael Espindola · 13 years ago
  20. 701ec8d Implement -fno-dwarf2-cfi-asm on linux too. by Rafael Espindola · 13 years ago
  21. 9168830 Ensure we don't print 123ULL_foo when printing a user-defined integer literal. by Richard Smith · 13 years ago
  22. b453ad3 Add support for cooked forms of user-defined-integer-literal and by Richard Smith · 13 years ago
  23. aae1d8b Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012: by Stepan Dyatkovskiy · 13 years ago
  24. 76e035a [AST] Change Type::isIntegerType to be inlined(). It is very popular. by Daniel Dunbar · 13 years ago
  25. 2fb4ae3 Implement C++11 [lex.ext]p10 for string and character literals: a ud-suffix not by Richard Smith · 13 years ago
  26. 5bc37f6 Loosen the precondition of isCXXInstanceMember() to simply return by Douglas Gregor · 13 years ago
  27. c2bd73b Sema: Don't emit a gajillion calls to sanity() -- an empty function -- in NDEBUG by Daniel Dunbar · 13 years ago
  28. dd66be7 User-defined literal support for character literals. by Richard Smith · 13 years ago
  29. ffea6b4 Fix -Wuninitialized to catch the case of a class being initialized with a call by Richard Trieu · 13 years ago
  30. 29f98b4 [libclang] Fix a crash when serializing a preprocessing record that contains by Argyrios Kyrtzidis · 13 years ago
  31. d78ef5b Streamline BalancedDelimiterTracker, by eliminating the duplicate by Douglas Gregor · 13 years ago
  32. 196b8cf Add a basic CallGraph to Analysis. by Anna Zaks · 13 years ago
  33. a34194f improve on diagnostic and provide a fixit hint when by Fariborz Jahanian · 13 years ago
  34. e286d9b Workaround module test failures by removing the version info from module hashes. by Bob Wilson · 13 years ago
  35. cbf8209 Be smarter in discovering list-initialization of temporaries. Fixes PR12182. by Sebastian Redl · 13 years ago
  36. 9fcce65 AST representation for user-defined literals, plus just enough of semantic by Richard Smith · 13 years ago
  37. e816c71 Add -Wc++11-compat warning for string and character literals followed by by Richard Smith · 13 years ago
  38. 946e272 Don't even try to directly emit the value of a DeclRefExpr if that declaration by Richard Smith · 13 years ago
  39. bef35c9 [PCH] Mark a PCH file with a flag to indicate if the serialized AST had by Argyrios Kyrtzidis · 13 years ago
  40. 9e9c454 Make sure we consistently canonicalize types when canonicalizing TemplateTemplateParmDecls. PR12179. by Eli Friedman · 13 years ago
  41. 458a7fb objective-c lldb support: don't perform ivar access control check by Fariborz Jahanian · 13 years ago
  42. fddfbdb More git-svn compatible version string, by request. by Andrew Trick · 13 years ago
  43. 485ea8e The constant folder's diagnosic mechanism is irrelevant for C; don't bother by Richard Smith · 13 years ago
  44. 8ba9a62 [driver] Don't try to generate diagnostic information for linker crashes. by Chad Rosier · 13 years ago
  45. 8b8d953 Silence unused variable warnings. by Benjamin Kramer · 13 years ago
  46. e53ac8a Refactor Clang sema attribute handling. by Michael Han · 13 years ago
  47. 047da19 [AST] VarDecl::hasDefinition() - Early exit if we find a strong definition. by Daniel Dunbar · 13 years ago
  48. 60d302a [AST] FunctionDecl::getBuiltinID() - Eliminate spurious calls to getASTContext by Daniel Dunbar · 13 years ago
  49. 8e282c3 Fix horrific CFG bug where '@autoreleasepool' would be put in a dangling block in the CFG. by Ted Kremenek · 13 years ago
  50. 53cb2b4 Whitespace. by Chad Rosier · 13 years ago
  51. ba66c6c Cleanup (style). Thanks to Argyrios for catching this. by Sean Callanan · 13 years ago
  52. 00fd5dd CMake: Fix build to add clangEdit to USED_LIBS. by NAKAMURA Takumi · 13 years ago
  53. ce9c831 Extended the UnknownAnyTy resolver to handle by Sean Callanan · 13 years ago
  54. 634a4b1 [driver] What was implemented in r152130 was actually -fno-inline-functions, not by Chad Rosier · 13 years ago
  55. 30660a8 Add new code migrator support for migrating existing Objective-C code to use by Ted Kremenek · 13 years ago
  56. 2a25396 Enable default @synthesize by default. by Ted Kremenek · 13 years ago
  57. 1a45a5f Add static analyzer support for new NSArray/NSDictionary/NSNumber literals. by Ted Kremenek · 13 years ago
  58. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 13 years ago
  59. 250008b [driver] Add support for -fno-inline. rdar://10972766 by Chad Rosier · 13 years ago
  60. 27949f6 Undo patch for // rdar://10735698 by Fariborz Jahanian · 13 years ago
  61. f9aa363 AST: Move several Type::is...Type() functions to be inline. by Daniel Dunbar · 13 years ago
  62. 9a2105b objective-c modern translator. Don't ignore unnamed bitfields when rewriting. by Fariborz Jahanian · 13 years ago
  63. 99831e4 User-defined literals: reject string and character UDLs in all places where the by Richard Smith · 13 years ago
  64. c1b0f7f Use TinyPtrVector instead of UsuallyTinyPtrVector. by Argyrios Kyrtzidis · 13 years ago
  65. 097ebb3 [analyzer] add a diagnostic event when entering a call via inlining, within the callee, and add an edge. by Ted Kremenek · 13 years ago
  66. 2dd17ab [analyzer] 'Looping back to the head of the loop' diagnostics are prunable. by Ted Kremenek · 13 years ago
  67. 218fce0 [analyzer] Remove now-unused constant. No functionality change. by Jordy Rose · 13 years ago
  68. 257c60f [analyzer] Fix unnecessary dyn_cast_or_null. No functionality change. by Jordy Rose · 13 years ago
  69. e4d653b Teak CallAndMessageChecker to only warn about uninitialized struct fields in call arguments by Ted Kremenek · 13 years ago
  70. 0cc323c static_assert: Allow any string-literal as the message, not just a character by Richard Smith · 13 years ago
  71. a99f874 Teach SimpleSValBuilder that (in the absence of more information) stack memory doesn't alias symbolic memory. This is a heuristic/hack, but works well in practice. Fixes <rdar://problem/10978247>. by Ted Kremenek · 13 years ago
  72. 02892a6 AST/stats: Don't effectively use an out-of-line function to return a static by Daniel Dunbar · 13 years ago
  73. d38f795 [analyzer] Time the execution (per each TU) with -analyzer-stats. by Anna Zaks · 13 years ago
  74. 2835745 If the element type of an initializer list has a destructor, make sure we check it. Fixes PR12178. by Sebastian Redl · 13 years ago
  75. abf9d90 patch to optionally warn for block implementations without explicit by Fariborz Jahanian · 13 years ago
  76. f420fe3 [analyzer] False positive in SelfInit - teach the checker about method by Anna Zaks · 13 years ago
  77. fb7f76f [analyzer] Malloc should assume that ownership is transfered when by Anna Zaks · 13 years ago
  78. 52c1668 Avoid double lookup. by Benjamin Kramer · 13 years ago
  79. 12fc4b0 Properly handle non-canonical underlying types in by Peter Collingbourne · 13 years ago
  80. 2bfdad1 Fix a -Wstring-plus-int warning. by Nico Weber · 13 years ago
  81. 713575a TargetInfo: create less temporary strings. by Benjamin Kramer · 13 years ago
  82. 234fe65 Fix a small difference in sema and codegen views of what needs to be output. by Rafael Espindola · 13 years ago
  83. b3c312c Fix a bug in the mangler where in 'namespace std { extern "C" {X;} }', X would not be seen to be in ::std::. by James Molloy · 13 years ago
  84. 2a27818 [arcmt] by Argyrios Kyrtzidis · 13 years ago
  85. c6c5452 [preprocessor] Enhance PreprocessingRecord to keep track of locations of conditional directives. by Argyrios Kyrtzidis · 13 years ago
  86. bb66066 [preprocessor] Enhance the preprocessor callbacks: by Argyrios Kyrtzidis · 13 years ago
  87. 5cc2c6e Lexing support for user-defined literals. Currently these lex as the same token by Richard Smith · 13 years ago
  88. a81d3d4 Remove a recursive visitation in ExprEngine that is no longer needed because the CFG is fully linearized. by Erik Verbruggen · 13 years ago
  89. 77889c4 Silence a GCC warning about a set-but-not-used variable in release builds. by Chandler Carruth · 13 years ago
  90. b4a7b1e Add tests for [over.literal]. Fix a few bugs which were exposed by the tests. by Richard Smith · 13 years ago
  91. d6e7356 add a testcase for PR12094 and fix a crash on pointer to incomplete type, by Chris Lattner · 13 years ago
  92. ec92bc7 Add a pile of tests for unrestricted unions, and advertise support for them. by Richard Smith · 13 years ago
  93. 1aa0be8 constexpr: Remove APValue/CCValue distinction. It is no longer useful given the by Richard Smith · 13 years ago
  94. 7eb7d99 Remove unused variable. by Benjamin Kramer · 13 years ago
  95. 16412ef Avoid an unnecessary recursive loop between type canonicalization and NNS canonicalization which would (rarely) lead to memory corruption. While I'm here, simplify. Fixes PR12166. Not committing a testcase because it's impossible to reduce it. by Eli Friedman · 13 years ago
  96. 7e86783 [analyzer] do not warn about returning stack-allocated memory when it comes from an ancestor stack frame. by Ted Kremenek · 13 years ago
  97. e21dd28 Frontend: Default to creating output files using temporary files + rename. by Daniel Dunbar · 13 years ago
  98. 12f28ab Frontend: Don't automatically create missing directories when using temporary files with createOutputFile() by Daniel Dunbar · 13 years ago
  99. 0d95dfc Thread safety analysis: expand set of expressions that can be used to denote locks. by DeLesley Hutchins · 13 years ago
  100. a3ca41f Reinstate r151879, r151880, reverted in r151922, along with a bugfix for by Richard Smith · 13 years ago