1. b805c8f [analyzer] Refactor checkers to use helper function for getting callee Decl and name. by Anna Zaks · 13 years ago
  2. a078ecf When analyzing a C++ method (without a specific caller), assume 'this' is non-null. Fixes <rdar://problem/10508787>. by Ted Kremenek · 13 years ago
  3. 3ed7903 Don't use a varargs convention for calls unprototyped functions where one of the arguments is an AVX vector. by Eli Friedman · 13 years ago
  4. 996e6e5 [libclang] Create a diagnostic set to pass at the end of indexing. by Argyrios Kyrtzidis · 13 years ago
  5. 185dbd7 Infer the submodule ID for a given declaration based on the location by Douglas Gregor · 13 years ago
  6. f1d1ca5 When sending a message to a receiver that has "unknown any" type, by Douglas Gregor · 13 years ago
  7. f8d34ed ParmVarDecls have no linkage. Previously we would report that parameters by Argyrios Kyrtzidis · 13 years ago
  8. 26ced12 Switch the ID numbers used for submodule IDs in the AST reader over to by Douglas Gregor · 13 years ago
  9. 968a0ee Specially whitelist the selector 'addOperationWithBlock:' for the retain-cycle checking in -Warc-retain-cycles. This commonly by Ted Kremenek · 13 years ago
  10. 75df4ee Further tweak -Wurneachable-code and templates by allowing the warning to run on by Ted Kremenek · 13 years ago
  11. 901dd66 Fix MSVC class layout for empty classes. Patch by Dmitry Sokolov. by Eli Friedman · 13 years ago
  12. 8374eda Another GCC fix by Douglas Gregor · 13 years ago
  13. 58196dc Revert most of r145372 for now. Lookahead beyond the ';' in a function by Richard Smith · 13 years ago
  14. 863eb53 Unbreak build with GCC. Clang is too lame to diagnose this particular ill-formedness by Douglas Gregor · 13 years ago
  15. 1a4761e Promote ModuleMap::Module to a namespace-scope class in the Basic by Douglas Gregor · 13 years ago
  16. 8d39c3d [PCH] In ASTReader::FinishedDeserializing, after we do PassInterestingDeclsToConsumer by Argyrios Kyrtzidis · 13 years ago
  17. 436bd50 Test case for fix committed in r145441. by Lang Hames · 13 years ago
  18. e5dd2ea make asan work at -O0, clang part. Patch by glider@google.com by Kostya Serebryany · 13 years ago
  19. 381c066 Per an offline conversation with John McCall, have StmtPrinter actually print out the source expression for OpaqueValueExpr. by Ted Kremenek · 13 years ago
  20. 5dfee06 Don't run -Wunreachable-code on template instantiations. Different instantiations may produce different unreachable code results, and it is very difficult for us to prove that ALL instantiations of a template have specific unreachable code. If we come up with a better solution, then we can revisit this, but this approach will at least greatly reduce the noise of this warning for code that makes use of templates. by Ted Kremenek · 13 years ago
  21. e25633f Don't collide loop variable names (to appease GCC) by Matt Beaumont-Gay · 13 years ago
  22. 4b7cac5 Note that we'll need to handle __include_macros specially in the module loader by Douglas Gregor · 13 years ago
  23. c85900f Get the -march argument based on the target MIPS architecture or cpu and pass by Akira Hatanaka · 13 years ago
  24. 90735f7 Update CMake build. by Benjamin Kramer · 13 years ago
  25. 8cfbe6a Move the module auto-import logic after the logic that allows a by Douglas Gregor · 13 years ago
  26. edee969 Trivial indentation fix for the code I just committed by Douglas Gregor · 13 years ago
  27. e3a8256 Introduce an opt-in warning indicating when the compiler is treating by Douglas Gregor · 13 years ago
  28. 392ed2b Implement (de-)serialization of the description of a module and its by Douglas Gregor · 13 years ago
  29. d699ade [analyzer] Add checker callback documentation. by Anna Zaks · 13 years ago
  30. c55edcf Use raw_ostream::indent. by Benjamin Kramer · 13 years ago
  31. 7f5fd8e Switch the module map printer over to by Douglas Gregor · 13 years ago
  32. 6eb47da Add preprocessor-only test for submodule imports by Douglas Gregor · 13 years ago
  33. 01e19be Fix the instantiation of pseudo-object expressions. This is a by John McCall · 13 years ago
  34. a8cc6ce When writing a module file, pass the module through to the AST by Douglas Gregor · 13 years ago
  35. b514c79 Teach the preprocessor how to handle module import declarations that by Douglas Gregor · 13 years ago
  36. 49009ec When loading a module that involves submodules (e.g., std.vector), by Douglas Gregor · 13 years ago
  37. dc8dab6 Add bigger method type encodings to protocol objects. <rdar://problem/10492418> by Bob Wilson · 13 years ago
  38. dff466c when -faddress-sanitizer is present, add required flags to the linker command (linux-only) by Kostya Serebryany · 13 years ago
  39. 3d3589d Switch the module-loading interfaces and parser from a simple by Douglas Gregor · 13 years ago
  40. d5a3b78 Make sure that forward declarations are marked as such in the debug info by Eric Christopher · 13 years ago
  41. 5c2a1f7 [libclang] Do the ConcurrencyCheck at the beginning of clang_findReferencesInFile. by Argyrios Kyrtzidis · 13 years ago
  42. 592d26e Change processor names. Patch by Simon Atanasyan. by Akira Hatanaka · 13 years ago
  43. c8d7f58 Revert r145244. It causes us to create broken ASTs with missing type information by Richard Smith · 13 years ago
  44. 381711c Suppress -Warray-bounds for classes (not just structs) where the last field is by Matt Beaumont-Gay · 13 years ago
  45. 6649014 Eliminate the -emit-module option, which emitted a module by parsing a by Douglas Gregor · 13 years ago
  46. 36ef702 Test isa<FunctionDecl> to exclude objective-C methods. This ensures the following cast will never fail. by Lang Hames · 13 years ago
  47. 213d1be Escape strings when printing module maps, for silly operating systems by Douglas Gregor · 13 years ago
  48. 18ee547 Switch on-demand module building over to use module maps, always. When by Douglas Gregor · 13 years ago
  49. 214323b Relax RegionStore to allow loads from CodeTextRegions. Apparently you can actually write code that does this. This seems worthy of a checker, but the StoreManager should handle the memory abstraction without crashing. Fixes PR 11450. by Ted Kremenek · 13 years ago
  50. cfbc5b5 Merge branch 'yo-dawg-i-herd-u-like-arrays' by Matt Beaumont-Gay · 13 years ago
  51. 2cbe84d Place "use @dynamic or provide a method implementation" warnings under a -W flag. by Ted Kremenek · 13 years ago
  52. f9e357d Teach the module import mechanism how to rebuild modules expressed via by Douglas Gregor · 13 years ago
  53. 933e7a6 Start refactoring to use module maps when rebuilding a module by Douglas Gregor · 13 years ago
  54. 9870401 Initialize NumWarningsInPreamble in ASTUnit's constructor, for safety. by Argyrios Kyrtzidis · 13 years ago
  55. 804c3bf Expose the printing of module maps as part of the ModuleMap::Module by Douglas Gregor · 13 years ago
  56. 7a71524 The cheap version of getName() is sufficient here. by Benjamin Kramer · 13 years ago
  57. 3267e11 Preserve constness. by Benjamin Kramer · 13 years ago
  58. 85224ae Silence GCC warnings, RefCountedBase is meant to be default-initialized here. by Benjamin Kramer · 13 years ago
  59. 6e1fd33 Add fix-it to remove 'typedef' from function template definitions. Such a token by Richard Smith · 13 years ago
  60. 2fea224 Fix leaking of LexedMethod objects created for caching objc method definitions tokens by Argyrios Kyrtzidis · 13 years ago
  61. 7383550 [libclang] Fix leak in clang_indexSourceFile_Impl by Argyrios Kyrtzidis · 13 years ago
  62. 573ea96 [Win32] Catch exceptions (eg. segfault) on waiting for invoked clang from the driver. by NAKAMURA Takumi · 13 years ago
  63. b8cb21c [libclang] Make the test portable. by Argyrios Kyrtzidis · 13 years ago
  64. 874d253 PR10101: Recover better from a common copy-paste error: if a function by Richard Smith · 13 years ago
  65. b49e728 [libclang] Make clang_findReferencesInFile also work on macros (find all expansions/definition by Argyrios Kyrtzidis · 13 years ago
  66. 375f7c4 Add Clang release notes for OpenCL C support. by Peter Collingbourne · 13 years ago
  67. 5cc989e Fix URL typo. by Peter Collingbourne · 13 years ago
  68. 9b2eb7b objc: warn if NSObject attribute appears other than in a typedef. by Fariborz Jahanian · 13 years ago
  69. 952538d Fix serialized diagnostics to handle FixIts that only remove text. Fixes <rdar://problem/10473903>. by Ted Kremenek · 13 years ago
  70. ee77d3d Fix a spelling error pointed out by Sebastien, and tidy up the by Chandler Carruth · 13 years ago
  71. f9e2e18 Remove the last of my notes. I don't think these really need to be in by Chandler Carruth · 13 years ago
  72. 45901b3 Last major chunk of features. This covers a couple of language by Chandler Carruth · 13 years ago
  73. 52e375e And sink the GNU runtime bit into this section as a stub. by Chandler Carruth · 13 years ago
  74. 4d58212 Flesh out the Objective-C section a bit. This may well need some love by Chandler Carruth · 13 years ago
  75. a9e269e The _setjmp builtin library function should have the "returns twice" by Bill Wendling · 13 years ago
  76. a74ec5c Add a couple more GCC versions to C++ search paths for MinGW. Patch by Ruben Van Boxem. by Eli Friedman · 13 years ago
  77. a5c502c CFI is mentioned on the LLVM releases as the clang bits are relatively small. by Rafael Espindola · 13 years ago
  78. 7972c88 A couple driver fixes for PPC Linux. Patches by Michael Kostylev. PR11444/PR11445. by Eli Friedman · 13 years ago
  79. 0c2198a Update release notes with 2 features now supported in -fms-extensions mode. by Francois Pichet · 13 years ago
  80. 4793138 Release notes: add link to ISO C++ 2011 standard from the C++11 section. by Richard Smith · 13 years ago
  81. 551988f Update release notes with information on MSVC mode. by Francois Pichet · 13 years ago
  82. ce27567 Correct the code generation for function arguments of vec3 types on x86_64 when they are greater than 128 bits. This was incorrectly coercing things like long3 into a double2. by Tanya Lattner · 13 years ago
  83. ad5459a Release notes: fix up formatting of diagnostic example. by Richard Smith · 13 years ago
  84. a4d36a6 When attempting to load a module that is not in the module cache, by Douglas Gregor · 13 years ago
  85. 185e930 Extract a Windows section in the release notes. Hopefully this is more by Chandler Carruth · 13 years ago
  86. 9c35304 Create a stub for Nick to hack on, nuking another of my rough notes. by Chandler Carruth · 13 years ago
  87. 2f37685 Pull the uninitialized values rewrite into the diagnostics section, and by Chandler Carruth · 13 years ago
  88. 3030b74 Remove some features that don't really seem major enough or widely used by Chandler Carruth · 13 years ago
  89. 62d730f Add a release notes section for C1X language features supported by clang 3.0. by Richard Smith · 13 years ago
  90. 9a16712 Pull out the libclang section and try to clean it up some. This one by Chandler Carruth · 13 years ago
  91. ed8bef4 [libclang] Protect against the declaration's SourceRange being invalid by Argyrios Kyrtzidis · 13 years ago
  92. 21480b7 We now have text (or comment stubs for others) for these... by Chandler Carruth · 13 years ago
  93. 58f2cbc Expand and clean up the diagnostics section. by Chandler Carruth · 13 years ago
  94. 7a31d7b fix html markup by Kostya Serebryany · 13 years ago
  95. f3dee20 Fix some possible gcc-4.2 may be used uninitialized warnings. by Daniel Dunbar · 13 years ago
  96. a0df07d Create a more organized (but still commented out as not very useful) by Chandler Carruth · 13 years ago
  97. 4e96944 Add missing equals. by Benjamin Kramer · 13 years ago
  98. 59abf06 Create a 3.1 notes section in a comment so that the next batch are a bit by Chandler Carruth · 13 years ago
  99. bfa5525 Peter says this shouldn't make it to the relnotes, it's too immature at by Chandler Carruth · 13 years ago
  100. b882a1d Flesh out and pretty-up the driver section. This could probably use some by Chandler Carruth · 13 years ago