1. dc58aa7 Thread a TargetInfo through to the module map; we'll need it for by Douglas Gregor · 13 years ago
  2. add5adb CMake: Promote the testing targets out of folders on IDE. by NAKAMURA Takumi · 13 years ago
  3. ebb1004 Just disable the compiler-builtins module test on MSVC for now by Douglas Gregor · 13 years ago
  4. 8101c7f Teach tgmath.h to only include <complex.h> if it's available. by Douglas Gregor · 13 years ago
  5. 0fcba56 Try to get useful diagnostics out of the failing MSVC builders by Douglas Gregor · 13 years ago
  6. e5c9e09 Alternate fix to the modules failures that doesn't require us to tweak tgmath.h by Douglas Gregor · 13 years ago
  7. 5ad2649 If there's no math.h, then tgmath.h should just be empty by Douglas Gregor · 13 years ago
  8. fe225e4 Temporary disable the -verify on this test in the hope of getting some useful output from the buildbots by Douglas Gregor · 13 years ago
  9. 3e80d8a Introduce a module map for (some of) the compiler-supplied by Douglas Gregor · 13 years ago
  10. 4e1524b revert r149184 by Fariborz Jahanian · 13 years ago
  11. 52f1272 Switch over to LLVM's file-level locking facility by Douglas Gregor · 13 years ago
  12. c6d626b Update line numbers. Sigh by Douglas Gregor · 13 years ago
  13. a007431 Also require a proper shell by Douglas Gregor · 13 years ago
  14. 85ae12d Ensure that we clean up after a failed module build and cope with the by Douglas Gregor · 13 years ago
  15. c5b2e58 Implement code completion support for module import declarations, e.g., by Douglas Gregor · 13 years ago
  16. e434ec7 Rework HeaderSearch's interface for getting a module from a name and by Douglas Gregor · 13 years ago
  17. 8f95cb3 Test module lookup within a subdirectory of a normal include directory. by Douglas Gregor · 13 years ago
  18. 77fe6cd When emitting an ARC epilogue that looks like a return of 'self', by John McCall · 13 years ago
  19. f48f796 Get a little bit smarter about killing off the ReturnValue alloca by John McCall · 13 years ago
  20. 4188760 Complain about attempts to use 'protected' visibility on targets by John McCall · 13 years ago
  21. de2fdc2 objc-arc: Perform null check on receiver before sending methods which by Fariborz Jahanian · 13 years ago
  22. a49a283 Make the __builtin_c[lt]zs builtins target independent. by Benjamin Kramer · 13 years ago
  23. 9f1c49c Use defined-at-zero behavior for CLZ/CTZ builtins on PowerPC. by Bob Wilson · 13 years ago
  24. c35fb7d StaticAnalyzer: Move ObjC- and CXX-specific methods out of line so checkers that don't care about the language don't have to pull in all the headers. by Benjamin Kramer · 13 years ago
  25. bd2b6f0 Added tests for template keyword presence. by Abramo Bagnara · 13 years ago
  26. 82e6411 DiagnosticsEngine::setMappingToAllDiagnostics() does not need to return bool, by Argyrios Kyrtzidis · 13 years ago
  27. 394f7b6 Allow the external AST source to provide a layout without specifying by Douglas Gregor · 13 years ago
  28. 5faf5d3 Remove the "C" in "implicitly declaring C library function" diagnostic by Jean-Daniel Dupas · 13 years ago
  29. a1f1fad Introduce module attributes into the module map grammar, along with a by Douglas Gregor · 13 years ago
  30. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 13 years ago
  31. 69d5384 Remove redundant checks. by Jean-Daniel Dupas · 13 years ago
  32. fad03b7 Avoid redundant NNS qualification in constructor/destructor names. by Abramo Bagnara · 13 years ago
  33. 8b4f2b7 Add test for -Wno-everything. by Argyrios Kyrtzidis · 13 years ago
  34. 11583c7 Due to a bug, -Wno-everything works like -Weverything. Fix the bug by having by Argyrios Kyrtzidis · 13 years ago
  35. 97a9cf3 In FixItRecompile::BeginInvocation() reset the diagnostics before executing by Argyrios Kyrtzidis · 13 years ago
  36. cff9f26 Reimplement (de-)serialization of Objective-C categories to eliminate by Douglas Gregor · 13 years ago
  37. 6895a64 Be sure to emit delayed diagnostics after parsing the declaration by John McCall · 13 years ago
  38. 745f514 constexpr: Implement the [dcl.constexpr]p5 check for whether a constexpr by Richard Smith · 13 years ago
  39. 30ae84c In FixItRecompile::BeginInvocation(), check the return value of BeginSourceFile(). by Argyrios Kyrtzidis · 13 years ago
  40. ba4be25 Placate gcc's -Wreturn-type by Matt Beaumont-Gay · 13 years ago
  41. a5fde15 test/Driver/prefixed-tools.c: Disable this on win32 hosts, msvc and mingw. by NAKAMURA Takumi · 13 years ago
  42. 5701e97 test/Driver/prefixed-tools.c: Fix newline at end-of-file. by NAKAMURA Takumi · 13 years ago
  43. 0fa0638 Turn off implicit truncation warning for compound assignment to bitfields; it might be reasonable in some cases, but it clearly doesn't make sense in some cases, like the included testcase. by Eli Friedman · 13 years ago
  44. 71d9d5c Teach ccc-analyzer about -fobjc-abi-version. by Ted Kremenek · 13 years ago
  45. 3a643af Make the bitfield implicit truncation warning slightly more aggressive, and make the printed warning a bit more accurate. The new behavior matches gcc's -Wconversion. <rdar://problem/10238797>. by Eli Friedman · 13 years ago
  46. 1bd9137 Remove the ToolTriple logic in NetBSD, which was completely broken by by Joerg Sonnenberger · 13 years ago
  47. 8b30a93 Make clz/ctz builtins defined for zero on ARM targets. rdar://10732455 by Bob Wilson · 13 years ago
  48. 66de97f Remove obviously incorrect branch. by Joerg Sonnenberger · 13 years ago
  49. 34144f6 Keep track of the original target the user specified before by Joerg Sonnenberger · 13 years ago
  50. 8bef823 Change references to 'const ProgramState *' to typedef 'ProgramStateRef'. by Ted Kremenek · 13 years ago
  51. bbdfad5 objc-arc: introduce -no-finalize-removal which in gc mode, by Fariborz Jahanian · 13 years ago
  52. e8c904f Don't suppress access-control or invalid-type diagnostics from a by John McCall · 13 years ago
  53. b9cd498 Try harder to get X7 defined by Douglas Gregor · 13 years ago
  54. 4fe19b5 Change HasMutableFields to HasOnlyCMembers and consider that a tag inside by Argyrios Kyrtzidis · 13 years ago
  55. ed0cc22 Don't separately serialize the list of instance variables in an by Douglas Gregor · 13 years ago
  56. a2a5028 Force layout of more of the unions and structures in this test by Douglas Gregor · 13 years ago
  57. 4196363 objc: 'id' and block pointer compare in mergeTypes is by Fariborz Jahanian · 13 years ago
  58. 5fe3122 AST/ExprConstant.cpp: Silence a warning on ms cl.exe. "bool" does not prefer to be compared to integer. by NAKAMURA Takumi · 13 years ago
  59. 1366392 Suppress any warnings from this test. They aren't interesting, and they by Chandler Carruth · 13 years ago
  60. 453dbcb Extend the ExternalASTSource interface to allow the AST source to by Douglas Gregor · 13 years ago
  61. 5b78a24 Use createRecordFwdDecl here since that's what we're doing. by Eric Christopher · 13 years ago
  62. 1c081d9 Revert previous patch unifying all of the C++ record prep in one area, by Eric Christopher · 13 years ago
  63. f8de042 Fix a minor bug in r148582, which made -ccc-host-triple into an alias option. by Bob Wilson · 13 years ago
  64. 3ee8c91 Remove another duplicated variable. by Eric Christopher · 13 years ago
  65. f2e4cd7 constexpr: evaluate (bool)&x as true when x is a local variable or a temporary. by Richard Smith · 13 years ago
  66. 98b940b Remove the headers now that ::close() is not used. by Argyrios Kyrtzidis · 13 years ago
  67. c8af910 In FixItRewriteToTemp::RewriteFilename don't try to close the file descriptor by Argyrios Kyrtzidis · 13 years ago
  68. f81263f [analyzer] The CFContainer test should only be run on x86_64. by Anna Zaks · 13 years ago
  69. 0277039 Rewrite/FrontendActions.cpp: Tweak to unbreak msvc. by NAKAMURA Takumi · 13 years ago
  70. c01dfc1 Revert r148249: "Make the auto-detection hack for the iOS simulator set the target triple correctly." by Bob Wilson · 13 years ago
  71. b4ab843 Improve efficiency of Sema::MaybeBindToTemporary by working with the by Peter Collingbourne · 13 years ago
  72. 95b68f9 Simplify {Record,Enum}Type::classof. by Peter Collingbourne · 13 years ago
  73. e26198c Adjust CLANG_BUILD_EXAMPLES to mean whether the examples are built by Peter Collingbourne · 13 years ago
  74. 516bbd4 Use function pointers, rather than references, to pass Destroyers by Peter Collingbourne · 13 years ago
  75. 24466d8 Add missing include of <unistd.h> by Douglas Gregor · 13 years ago
  76. e41b041 Add an additional testcase for a lambda with implicit void return type. by Eli Friedman · 13 years ago
  77. 8ec2bc8 Post link to checker-260, which is checker-259 with some experimental checks enabled. by Ted Kremenek · 13 years ago
  78. 84b007f Refactor to share code for handling return statements between lambda expressions and block literals. As it turns out, almost all the logic can be shared. by Eli Friedman · 13 years ago
  79. 61d679a Introduce 3 new fixit options: by Argyrios Kyrtzidis · 13 years ago
  80. 7a776be fix to go along with an llvm change: VMCore now returns an UndefValue by Chris Lattner · 13 years ago
  81. 8dc0506 Enable several checkers under --analyze for general testing. by Ted Kremenek · 13 years ago
  82. de983d8 Tidy and remove some unused variables. by Eric Christopher · 13 years ago
  83. 426fc94 Fix our handling of #pragma GCC visibility. by Rafael Espindola · 13 years ago
  84. 027cb30 Collect this information together. No reason to have it split. by Eric Christopher · 13 years ago
  85. 6faa554 Refactor into its own function. by Eric Christopher · 13 years ago
  86. 24248e3 Reintroduce r148981 with significantly improved regression test. Now it by Chandler Carruth · 13 years ago
  87. 46e39e3 StaticAnalyzer/Checkers: Fix CMake build. by NAKAMURA Takumi · 13 years ago
  88. cbd2733 [analyzer] Add an AST checker that checks for a common pitfall when by Anna Zaks · 13 years ago
  89. e7cff2c objc: allow block pointer matching 'id' type when by Fariborz Jahanian · 13 years ago
  90. ceccab9 Slight refactoring; catch yet another case where we were missing an lvalue-to-rvalue conversion. by Eli Friedman · 13 years ago
  91. 26f0e4e arc migrator: Added an option to the migrator unused yet. by Fariborz Jahanian · 13 years ago
  92. bac3413 Rework flushing of diagnostics to PathDiagnosticConsumer. Now all the reports are batched up before being flushed by Ted Kremenek · 13 years ago
  93. 01f276d Don't stack-allocate an IntegerLiteral which can be referred to after the current method returns. PR11744, part 2. by Eli Friedman · 13 years ago
  94. 10afce3 Revert r148981 because it fails test/Driver/freebsd.c by Argyrios Kyrtzidis · 13 years ago
  95. 55fc7e2 Add some ABI tweaks for i386-pc-win32 triple so that we return structs in an MSVC-compatible way. Patch by Joe Groff. by Eli Friedman · 13 years ago
  96. 0f12507 Improve the error message slightly for files that aren't using the expected UTF-8 encoding. Patch by Seth Cantrell. by Eli Friedman · 13 years ago
  97. 457a377 Fix a crash involving a multi-dimensional dependent VLA. PR11744. by Eli Friedman · 13 years ago
  98. d2e7090 Post open source analyzer build checker-259. by Ted Kremenek · 13 years ago
  99. d9b02e7 constexpr: add support for anonymous struct and union members in literal types. by Richard Smith · 13 years ago
  100. 51cb75a Clean up comment. by Eric Christopher · 13 years ago