1. bff22ac Fix bitfield handling for record layout with #pragma pack. <rdar://problem/10494810> and PR9560. by Eli Friedman · 13 years ago
  2. c5f9a01 Add support for AVX registers to clang inline asm. Add a small testcase by Eric Christopher · 13 years ago
  3. 93bfd79 Clean up some oddly gratuitous vertical whitespace. by Eric Christopher · 13 years ago
  4. 867a379 Rename function. by Eric Christopher · 13 years ago
  5. 90db260 Implementing parsing and resolution of module export declarations by Douglas Gregor · 13 years ago
  6. 7f42228 Diagnose use of wide string literal in 'asm' instead of crashing. Fixes <rdar://problem/10465079>. by Ted Kremenek · 13 years ago
  7. 4bb6686 Fix wrong-code bug when a const automatic variable of struct type has both a by Richard Smith · 13 years ago
  8. ee1ad99 When we're passing a vector with an illegal type through memory on x86-64, use byval so we're sure the backend does the right thing. Fixes va_arg with illegal vectors and an obscure ABI mismatch with __m64 vectors. by Eli Friedman · 13 years ago
  9. ecc2c09 Implement name hiding for declarations deserialized from a non-visible by Douglas Gregor · 13 years ago
  10. ee5a21f [analyzer] Make KeychainAPI checker less aggressive. radar://10508828 by Anna Zaks · 13 years ago
  11. a38c473 When typo-correction an Objective-C superclass name, don't by Douglas Gregor · 13 years ago
  12. 50118da Add Microsoft mangling of constructors and destructors. Patch by Dmitry! by Michael J. Spencer · 13 years ago
  13. 2aba711 Change the Microsoft __interface keyword to be an alias for struct (not class) since members are public by default. by Francois Pichet · 13 years ago
  14. 60a4481 Fix typo. by Ted Kremenek · 13 years ago
  15. 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
  16. 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
  17. f1d1ca5 When sending a message to a receiver that has "unknown any" type, by Douglas Gregor · 13 years ago
  18. f8d34ed ParmVarDecls have no linkage. Previously we would report that parameters by Argyrios Kyrtzidis · 13 years ago
  19. 968a0ee Specially whitelist the selector 'addOperationWithBlock:' for the retain-cycle checking in -Warc-retain-cycles. This commonly by Ted Kremenek · 13 years ago
  20. 75df4ee Further tweak -Wurneachable-code and templates by allowing the warning to run on by Ted Kremenek · 13 years ago
  21. 901dd66 Fix MSVC class layout for empty classes. Patch by Dmitry Sokolov. by Eli Friedman · 13 years ago
  22. 58196dc Revert most of r145372 for now. Lookahead beyond the ';' in a function by Richard Smith · 13 years ago
  23. 8d39c3d [PCH] In ASTReader::FinishedDeserializing, after we do PassInterestingDeclsToConsumer by Argyrios Kyrtzidis · 13 years ago
  24. 436bd50 Test case for fix committed in r145441. by Lang Hames · 13 years ago
  25. 381c066 Per an offline conversation with John McCall, have StmtPrinter actually print out the source expression for OpaqueValueExpr. by Ted Kremenek · 13 years ago
  26. 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
  27. e3a8256 Introduce an opt-in warning indicating when the compiler is treating by Douglas Gregor · 13 years ago
  28. 6eb47da Add preprocessor-only test for submodule imports by Douglas Gregor · 13 years ago
  29. 01e19be Fix the instantiation of pseudo-object expressions. This is a by John McCall · 13 years ago
  30. 49009ec When loading a module that involves submodules (e.g., std.vector), by Douglas Gregor · 13 years ago
  31. d5a3b78 Make sure that forward declarations are marked as such in the debug info by Eric Christopher · 13 years ago
  32. c8d7f58 Revert r145244. It causes us to create broken ASTs with missing type information by Richard Smith · 13 years ago
  33. 381711c Suppress -Warray-bounds for classes (not just structs) where the last field is by Matt Beaumont-Gay · 13 years ago
  34. 6649014 Eliminate the -emit-module option, which emitted a module by parsing a by Douglas Gregor · 13 years ago
  35. 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
  36. cfbc5b5 Merge branch 'yo-dawg-i-herd-u-like-arrays' by Matt Beaumont-Gay · 13 years ago
  37. 2cbe84d Place "use @dynamic or provide a method implementation" warnings under a -W flag. by Ted Kremenek · 13 years ago
  38. f9e357d Teach the module import mechanism how to rebuild modules expressed via by Douglas Gregor · 13 years ago
  39. 6e1fd33 Add fix-it to remove 'typedef' from function template definitions. Such a token by Richard Smith · 13 years ago
  40. b8cb21c [libclang] Make the test portable. by Argyrios Kyrtzidis · 13 years ago
  41. 874d253 PR10101: Recover better from a common copy-paste error: if a function by Richard Smith · 13 years ago
  42. b49e728 [libclang] Make clang_findReferencesInFile also work on macros (find all expansions/definition by Argyrios Kyrtzidis · 13 years ago
  43. 9b2eb7b objc: warn if NSObject attribute appears other than in a typedef. by Fariborz Jahanian · 13 years ago
  44. 952538d Fix serialized diagnostics to handle FixIts that only remove text. Fixes <rdar://problem/10473903>. by Ted Kremenek · 13 years ago
  45. 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
  46. 3881c69 [analyzer] Add more simple taint tests. by Anna Zaks · 13 years ago
  47. f485388 When synthesizing an implicitly-defined copy or move constructor, or by Douglas Gregor · 13 years ago
  48. 39b4fc8 pinpoint name/location of deprecated/unavailable enumerator by Fariborz Jahanian · 13 years ago
  49. d3c147f objc: turn warning for property type mismatch in by Fariborz Jahanian · 13 years ago
  50. a976641 When checking a call to a builtin atomic operation, be sure to by Douglas Gregor · 13 years ago
  51. 56f5d36 Removed useless ImplicitCast nodes in explicit cstyle and static casts by Nicola Gigante · 13 years ago
  52. 6079676 test/lit.cfg: Enhance getRegisteredTargets() to retrieve +Asserts. by NAKAMURA Takumi · 13 years ago
  53. 6da4274 [arcmt] Integrate GC __weak into property attributes even when we don't have by Argyrios Kyrtzidis · 13 years ago
  54. 6d7d16d [arcmt] Don't add __weak if there is already a GC __weak and make sure to clear by Argyrios Kyrtzidis · 13 years ago
  55. bceb755 In Sema::MaybeBindToTemporary, create a CXXBindTemporaryExpr for an by Peter Collingbourne · 13 years ago
  56. 53ac3d8 Make our handling of MMX x SSE closer to what gcc does: by Rafael Espindola · 13 years ago
  57. 2871020 Add inreg attributes to reference arguments. by Rafael Espindola · 13 years ago
  58. 13dc8f9 Reference initialization with initializer lists. by Sebastian Redl · 13 years ago
  59. 4c7ce36 Set __OPTIMIZE_SIZE__ on -Os and -Oz. This matches gcc's behaviour on both OS X by Rafael Espindola · 13 years ago
  60. c8ff915 In Microsoft mode, make "Unqualified lookup into dependent bases of class templates" works inside a friend function definition at class scope. by Francois Pichet · 13 years ago
  61. a5aa96d Wordsmith the -Warray-bounds diagnostic text a bit by Matt Beaumont-Gay · 13 years ago
  62. 6efd4c5 Add feature to diagnostics that will provide more information on function by Richard Trieu · 13 years ago
  63. bcf8df8 [PCH] Check for isTopLevelDeclInObjCContainer when picking abbreviations. by Argyrios Kyrtzidis · 13 years ago
  64. c14a03d [libclang] Fix operations (token annotation, getting cursor, etc.) with a file region by Argyrios Kyrtzidis · 13 years ago
  65. a6d81f9 AAPCS compliance - 32-bit wchar_t should be unsigned for both aapcs and aapcs-linux. by James Molloy · 13 years ago
  66. 1a3246a Don't check alignment, it's irrelevant to this test. by Richard Smith · 13 years ago
  67. 7401cf5 Use static storage duration for file-scope compound literals, even when they by Richard Smith · 13 years ago
  68. b619688 implement __has_feature(address_sanitizer); also use LangOpts.AddressSanitizer instead of CodeGenOpts.AddressSanitizer by Kostya Serebryany · 13 years ago
  69. 3fa45bb Un-XFAIL this test on Darwin, it reportedly passes now. by Peter Collingbourne · 13 years ago
  70. c18c423 Add driver arguments -ftemplate-depth=N and -fconstexpr-depth=N, with the same by Richard Smith · 13 years ago
  71. 1b91ab4 Delete the depfile if we could not open a header file. We cannot by Peter Collingbourne · 13 years ago
  72. 5d4d980 Teach the driver about failure result files, which are compilation by Peter Collingbourne · 13 years ago
  73. 5c247db CodeGen: allow __asm renaming on static local variables. by Benjamin Kramer · 13 years ago
  74. 9d38dbc Enable delayed template parsing for friend functions declared at template class scope. by Francois Pichet · 13 years ago
  75. 5a1ac89 Finish r144971, which was an incomplete commit. by Eli Friedman · 13 years ago
  76. 7e7ad3f Fix the meaning of an "empty" record for the case of a zero-length array. Use isEmptyRecord for arguments on x86-32; there are structs of size 0 which don't count as empty. by Eli Friedman · 13 years ago
  77. 8d2fe42 Make va_arg on x86-64 compute alignment the same way as argument passing. by Eli Friedman · 13 years ago
  78. 8f4caf5 [analyzer] Warn when non pointer arguments are passed to scanf (only when running taint checker). by Anna Zaks · 13 years ago
  79. 7b1fb81 A bunch of fixes to argument passing and va_arg on Darwin x86-32 for structures containing an SSE vector. by Eli Friedman · 13 years ago
  80. 506d4e3 Don't try to expand struct arguments containing holes on x86-32. From gcc struct layout tests. by Eli Friedman · 13 years ago
  81. bd4d3bc Simplify code for returning a struct for Darwin x86-32 ABI. Use a better type for a function returning a struct containing only a pointer. Handle the edge case of a struct containing only a float or double plus some dead padding instead of asserting. by Eli Friedman · 13 years ago
  82. 01f2a1e [analyzer] The compiler warning was disabling the analyzer in this test. by Anna Zaks · 13 years ago
  83. 5a4d352 Ignore empty unions in argument lowering on x86-32. From gcc struct layout tests. by Eli Friedman · 13 years ago
  84. 0d339d0 [analyzer] Do not conjure a symbol when we need to propagate taint. by Anna Zaks · 13 years ago
  85. e24f5fc Constant expression evaluation: add support for evaluation of member pointers by Richard Smith · 13 years ago
  86. a865405 Add the notion of "framework" modules to module maps. Framework by Douglas Gregor · 13 years ago
  87. 117bc17 test/Frontend/dependency-gen.c: Relax expressions for Win32 host (mingw msys). by NAKAMURA Takumi · 13 years ago
  88. 6fe2965 Include named unions in union member init checking by David Blaikie · 13 years ago
  89. e6226ae In Microsoft mode, make "Unqualified lookup into dependent bases of class templates" works inside default argument instantiation. by Francois Pichet · 13 years ago
  90. 2821c7f When we're loading a framework header, first try to turn the framework by Douglas Gregor · 13 years ago
  91. 643ffaa tests/Driver/darwin-ld.c: Get rid of the "splatter" test case. We have enough by Daniel Dunbar · 13 years ago
  92. 24d1c96 Add missing header for modules test. by Douglas Gregor · 13 years ago
  93. adb9799 A module with an umbrella header assumes that all of the headers in by Douglas Gregor · 13 years ago
  94. 960809e Added missing ImplicitCastExpr around conversion operator call. by Abramo Bagnara · 13 years ago
  95. e42a0ab Fixed crash with initializer lists and unnamed bitfields in the RegionStore by Jim Goodnow II · 13 years ago
  96. a081da5 Implement (de-)serialization of the buffer contents for an overridden by Douglas Gregor · 13 years ago
  97. 9b0970f [analyzer] Catch the first taint propagation implied buffer overflow. by Anna Zaks · 13 years ago
  98. 2ad226b PR11391: Don't try to evaluate the LHS of a _Complex assignment as an rvalue. by Richard Smith · 13 years ago
  99. 261e75b When building a module from a module map that isn't simply an umbrella by Douglas Gregor · 13 years ago
  100. f8b42d1 Switch the remaining modules tests over to -emit-module-from-map. by Douglas Gregor · 13 years ago