1. 1de4d4e Basic, untested implementation for an "unknown any" type requested by LLDB. by John McCall · 14 years ago
  2. 83eedee I can't figure out any reasonable way to make this test non-host-dependent, by John McCall · 14 years ago
  3. 96b4adc Wide Pascal strings should be of type wchar_t[] and not unsigned char[]. by Anders Carlsson · 14 years ago
  4. 759abb4 Fix lookup for class messages sent to qualified-class by Fariborz Jahanian · 14 years ago
  5. 01cb307 Refine rules for atomic property api to by Fariborz Jahanian · 14 years ago
  6. 6931743 Do not use IR marker for LLVM intrinsics by Peter Collingbourne · 14 years ago
  7. 98b8f16 When updating the retain summary based on {cf,ns}_consumed attributes, by John McCall · 14 years ago
  8. 018e02c Make this a -cc1 test with a triple and a target feature. by John McCall · 14 years ago
  9. 0f9d155 Anonymify this test. by John McCall · 14 years ago
  10. d688bc0 Implement the AVX cmp builtins as macros instead of static inlines. by John McCall · 14 years ago
  11. b3c4906 Diagnose a missing ')' on what looks like a statement expression. by John McCall · 14 years ago
  12. 97edcb6 Add a test case for r128957. It fixed a bug! by Devang Patel · 14 years ago
  13. 5fb6509 Fixes a regression caused by my last patch. by Fariborz Jahanian · 14 years ago
  14. 5ecb1df Emit debug info for function template parameters. by Devang Patel · 14 years ago
  15. 1d3a61a Generate atomic api for atomic properties (x86 and x86_64 by Fariborz Jahanian · 14 years ago
  16. b88fb02 Commit a bit of a hack to fully handle the situation where variables are by Chandler Carruth · 14 years ago
  17. 9cb677e Add security syntax checker for strcat() which causes the Static Analyzer to generate a warning any time the strcat() function is used with a note suggesting to use a function which provides bounded buffers. CWE-119. by Lenny Maiorani · 14 years ago
  18. b414c4f Fix PR9624 by explicitly disabling uninitialized warnings for direct self-init: by Chandler Carruth · 14 years ago
  19. d40066b Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numerous CFG and UninitializedValues analysis changes: by Ted Kremenek · 14 years ago
  20. ba690a4 Incomplete type does not have any size. by Devang Patel · 14 years ago
  21. 1659acb Change test/Analysis/idempotent-operations.c to output the .plist file in the test output directory. by Argyrios Kyrtzidis · 14 years ago
  22. 6f41715 -Wuninitialized: use "self-init" warning when issue uninitialized values warnings from the dataflow analysis that include within the initializer of a variable. by Ted Kremenek · 14 years ago
  23. f8adeef -Wuninitialized: don't warn about uninitialized variables in unreachable code. by Ted Kremenek · 14 years ago
  24. 5360c92 -Wuninitialized: don't issue fixit for initializer if a variable declaration already has an initializer. by Ted Kremenek · 14 years ago
  25. 5862f0e When emitting a "too many arguments to function call..." error, also include a note with a location for the function prototype. by Ted Kremenek · 14 years ago
  26. cccc02a PR9585: add __decltype as a keyword. While I'm here, alphabetize the list. by Eli Friedman · 14 years ago
  27. d593190 PR9615: make sure we destroy any temporaries returned by operator->. by Eli Friedman · 14 years ago
  28. 6a4e73c clang has had full and tested support for C++0x trailing-return-type and auto type deduction since r126166. Update the website to reflect this, and add a __has_feature test. by Richard Smith · 14 years ago
  29. 45fa623 Fix RegionStore bug when doing a field load whose parent is also a field assigned a LazyCompoundValue. Fixes <rdar://problem/9163742> and PR 9522. by Ted Kremenek · 14 years ago
  30. 2166948 Make -Wheader-hygiene not complain about USING_NAMESPACE_THROUGH_MACRO in a non-header file. by Nico Weber · 14 years ago
  31. d765061 Apply a bug-fix patch from Marcin Kowalczyk to the source locations for by Chandler Carruth · 14 years ago
  32. 422ab7a Teach IdempotentOperationsChecker about paths aborted because ExprEngine didn't know how to handle a specific Expr type. by Ted Kremenek · 14 years ago
  33. 651ba52 Fixes a rewriter bug rewriting call to a byref by Fariborz Jahanian · 14 years ago
  34. 380ee50 ANother rewrite bug, rewriting a call of __byref block. // rdar://9204669 by Fariborz Jahanian · 14 years ago
  35. ae503df Do not try calculate the size of forward-declared template type array. by Devang Patel · 14 years ago
  36. d553408 IRgen: Reapply r128691 with a fix to ensure we don't increase alignment past by Daniel Dunbar · 14 years ago
  37. 457c838 Revert r128691, "IRgen: Improve GCC compatibility when dealing with packed by Daniel Dunbar · 14 years ago
  38. b23a5a0 IRgen: Improve GCC compatibility when dealing with packed arrays by propagating by Daniel Dunbar · 14 years ago
  39. 822ac87 Fix couple of rewriter bugs related to rewriting a by Fariborz Jahanian · 14 years ago
  40. bc8b44c -Wuninitialized should not warn about variables captured by blocks as byref. by Ted Kremenek · 14 years ago
  41. 5b67a82 Add security syntax checker for strcpy() which causes the Static Analyzer to generate a warning any time the strcpy() function is used with a note suggesting to use a function which provides bounded buffers. by Lenny Maiorani · 14 years ago
  42. b8b875b Adding Static Analyzer checker for mempcpy(). by Lenny Maiorani · 14 years ago
  43. f0c11f7 After much contemplation, I've decided that we probably shouldn't "unique" by John McCall · 14 years ago
  44. 94ae8fd Static analyzer: fix bug in handling of dynamic_cast<>. The sink node wouldn't always be the final node, thus causing the state to continue propagating. Instead, by Ted Kremenek · 14 years ago
  45. 41c5f49 Teach static analyzer about the basics of handling new[]. We still don't simulate constructors, but at least the analyzer doesn't think the return value is uninitialized. by Ted Kremenek · 14 years ago
  46. ad1a4c6 Change Clang's __VERSION__ to include the same basic info as in clang -v. by Daniel Dunbar · 14 years ago
  47. b277159 Begin reworking static analyzer support for C++ method calls. The current logic was divorced by Ted Kremenek · 14 years ago
  48. 61750f2 de-sugared when accessing property reference type. by Fariborz Jahanian · 14 years ago
  49. 68af13f Fix IRGen issues related to using property-dot syntax by Fariborz Jahanian · 14 years ago
  50. 1b41f60 Robustify test string. by Devang Patel · 14 years ago
  51. bc52032 Add target triple. by Devang Patel · 14 years ago
  52. b603c90 by Devang Patel · 14 years ago
  53. dde385d Add a triple to make the test friendly on no windows platform. by Francois Pichet · 14 years ago
  54. b613cd6 Accept __declspec(dllimport) for function defined at class scope in Microsoft mode. by Francois Pichet · 14 years ago
  55. 9043423 Fix a bug in how we were resolving the address of overloaded functions by Chandler Carruth · 14 years ago
  56. b831c67 Add workaround for Sema issue found in <rdar://problem/9188004>, which leads to an assertion failure in the uninitialized variables analysis. The problem is that Sema isn't properly registering a variable in a DeclContext (which -Wuninitialized relies on), but by Ted Kremenek · 14 years ago
  57. 170a6a2 Don't do the checks of Sema::DiagnoseEqualityWithExtraParens() on type-dependent expressions. Fixes rdar://9027658. by Argyrios Kyrtzidis · 14 years ago
  58. 1408676 Implements property of reference types. Adding by Fariborz Jahanian · 14 years ago
  59. b460210 Also 'self' in blocks need be handled specially. // rdar://9181463 by Fariborz Jahanian · 14 years ago
  60. 3334b0b Fix PR9572 and neighboring lurking crashers. by Matt Beaumont-Gay · 14 years ago
  61. 5b8e0d8 Add my test case for r128353. I think this is the last test case to fail by Chandler Carruth · 14 years ago
  62. 349894e Add tests for the uninitialized checks added in r128376. Also clean up by Chandler Carruth · 14 years ago
  63. 34b8e68 Flip the default for showing include stacks on notes to false. This by Chandler Carruth · 14 years ago
  64. f2d74cc 'self' is objective-c's 'self' objc pointer only in by Fariborz Jahanian · 14 years ago
  65. 4147d30 Improve recovery (error + fix-it) when parsing type dependent template name without the "template" keyword. by Francois Pichet · 14 years ago
  66. 7870b13 AltiVec vector comparison logic now affect only vectors of fundamental AltiVec vector types. It fixes bug 9347. by Anton Yartsev · 14 years ago
  67. a7689ef Diagnose uninitialized uses of a variable within its own initializer. by Chandler Carruth · 14 years ago
  68. d06fea8 supported: AltiVec vector initialization with a single literal according to PIM section 2.5.1 - after initialization all elements have the value specified by the literal by Anton Yartsev · 14 years ago
  69. bda0d6b We were emitting construction v-tables with internal linkage all the time. by John McCall · 14 years ago
  70. 9172aa6 Improve -Wheader-hygiene to warn about using directives inside linkage by Douglas Gregor · 14 years ago
  71. 077f490 More coherent diagnostic attempting to assign to a member of a const object returned by Fariborz Jahanian · 14 years ago
  72. dc0a2da For Diagnostic::Reset() also reset the state related to #pragma diagnostic. Fixes rdar://9170766. by Argyrios Kyrtzidis · 14 years ago
  73. 3b3e1a9 fix the second part of rdar://8366474 - clang fails to parse ObjC selectors with '::', when :: isn't the first part of the selector. by Chris Lattner · 14 years ago
  74. 3d9ce90 Make diagnostic clearer. by Fariborz Jahanian · 14 years ago
  75. 65b427f Don't add a symbolic region for 'this' if the member function is static. by Anders Carlsson · 14 years ago
  76. dceb531 Add a __has_feature check for the 'availability' attribute by Douglas Gregor · 14 years ago
  77. 4421d2b On Mac OS X, the presence of an 'availability' attribute for that by Douglas Gregor · 14 years ago
  78. 6cc425e Test attribute merging for the availability attribute. by Douglas Gregor · 14 years ago
  79. b53e417 Extend the new 'availability' attribute with support for an by Douglas Gregor · 14 years ago
  80. 2234873 Allow GC qualifiers to be added/removed by conversions from/to void* by John McCall · 14 years ago
  81. 379246d Don't warn about the 'extern' in 'extern "C"' on a tag decl. This is by John McCall · 14 years ago
  82. 7da19ea Fix the recovery from missing semis on @property declarations to not consume by John McCall · 14 years ago
  83. 7ea2193 Properly move attributes to the decl spec when applying them there. by John McCall · 14 years ago
  84. af19ac4 Obj-C/NeXT: Update and reapply 108847, now that changes are more baked. by Daniel Dunbar · 14 years ago
  85. 59f9046 Driver/Darwin: Dsymutil actions should put the dSYM adjacent to the output file. by Daniel Dunbar · 14 years ago
  86. c8b9f79 we can now claim to fully support the override control feature in C++0x. by Anders Carlsson · 14 years ago
  87. b184a18 Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only parse an optional 'final' keyword. by Anders Carlsson · 14 years ago
  88. 2c3ee54 Get rid of handling of the 'explicit' keyword from class-head. We still parse it though, although that will change shortly. by Anders Carlsson · 14 years ago
  89. 844c25d Remove warnings about using override control keywords in inline function definitions; they will be allowed in the next C++0x draft. by Anders Carlsson · 14 years ago
  90. b1f3968 Remove 'new' from virt-specifier since it's going to be removed in the next C++0x draft by Anders Carlsson · 14 years ago
  91. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 14 years ago
  92. 8d8420e Fixed some of the incompatibilities with gcc. by John Thompson · 14 years ago
  93. 1d2de76 Minor fix in the injection of labels, since we want to look at the redeclaration context of each declaration in the identifier chain. Should fix Linux self-host by Douglas Gregor · 14 years ago
  94. fa7b8ce Fix the insertion of label declarations into the identifier chain in by Douglas Gregor · 14 years ago
  95. c285372 Make sure we aggressively attach nounwind (etc.) to calls to library by Eli Friedman · 14 years ago
  96. 2b32dad Add a new warning for exit-time destructors. by Anders Carlsson · 14 years ago
  97. 5188507 Rework checker "packages" and groups to be more hierarchical. by Ted Kremenek · 14 years ago
  98. c7ef462 Fixed type error in last commit (forgot that now that selectors are not by David Chisnall · 14 years ago
  99. a8d459e Fix CFG-construction bug when run from AnalysisBasedWarnings::IssueWarnings() where block-level expressions that need by Ted Kremenek · 14 years ago
  100. bec7343 Unbreak test by Douglas Gregor · 14 years ago