1. c6eb44b C1X: implement static asserts by Peter Collingbourne · 13 years ago
  2. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  3. 87f1064 If the declaration of a C++ member function with an inline definition by Douglas Gregor · 13 years ago
  4. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  5. ea698b3 Detect when the string "<::" is found in code after a cast or template name and is interpreted as "[:" because of the digraph "<:". When found, give an error with a fix-it to add whitespace between the "<" and "::". by Richard Smith · 13 years ago
  6. 5da3c08 Match pointer of compatible vection types. // rdar://9208404 by Fariborz Jahanian · 13 years ago
  7. 3e64d56 When determining the "usage" type of a declaration for the purposes of code by Douglas Gregor · 13 years ago
  8. 414d896 Implement ARM pcs attribute. Basically it's another way of calling convention selection (AAPCS or by Anton Korobeynikov · 13 years ago
  9. 87a1e19 Implement C++0x [lex.pptoken]p3's handling of <::. by Richard Smith · 13 years ago
  10. 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 13 years ago
  11. 5bbcdbf Chained PCH: Remember when additional specializations are added to a function template from a previous PCH. Fixes the only crasher when using massive chains on Clang's Sema component. We still have some incomplete codegen there. by Sebastian Redl · 13 years ago
  12. 0d8dc46 When creating an implicit member expression through a qualified-id, check that the class by Argyrios Kyrtzidis · 13 years ago
  13. b8fc45f In C++, when initializing an array from a pascal string, it's OK if the array by Anders Carlsson · 13 years ago
  14. ddd7a3d Rename test. by Anders Carlsson · 13 years ago
  15. a89344d Add -no-canonical-prefixes to tests which assert on the name of the by Chandler Carruth · 13 years ago
  16. 6027461 Issue the 2nd fixit even if fix-it hint is supressed. // rdar://9091893 by Fariborz Jahanian · 13 years ago
  17. 81ab3cf No fixit hint for builtin expressions which are by Fariborz Jahanian · 13 years ago
  18. 9b064d8 Removing the unaligned load tests from builtins-x86.c since they're generated by a regular 'load' now. by Bill Wendling · 13 years ago
  19. 8668494 Teach -Wuninitialized about C++'s typeid expression, including both the by Chandler Carruth · 13 years ago
  20. 6943e9b In Microsoft mode, within class scope, if a CXXScopeSpec's type is equal to the type of one of the base classes then downgrade the missing typename error to a warning. Up to now this is the only case I found where MSVC doesn't require "typename" at class scope. Really strange! by Francois Pichet · 13 years ago
  21. b8f17ab Redeclaration of 'self' should be flagged in by Fariborz Jahanian · 13 years ago
  22. f7e903d IRgen/Obj-C: Emit CFStrings and NSStrings with the alignment of the char type, by Daniel Dunbar · 13 years ago
  23. 6591271 We can't emit an aggregate cast as its sub-expression in general just by John McCall · 13 years ago
  24. 9281efe Teach VariadicMethodTypeChecker to not crash when processing methods declared in protocols. by Ted Kremenek · 13 years ago
  25. 82cfc68 ArrayBoundCheckerV2: don't arbitrarily warn about indexing before the 0-index of a symbolic region. In many cases that isn't really the base offset. by Ted Kremenek · 13 years ago
  26. 318dd92 This patch adds modeling of strcmp() to the CString checker. Validates inputs are not NULL and are real C strings, then does the comparison and binds the proper return value. Unit tests included. by Lenny Maiorani · 13 years ago
  27. 627788c Fix a regression where the initializer implements by Fariborz Jahanian · 13 years ago
  28. df1550f Fix AST serialization of reference-to-reference types. This previously caused by Richard Smith · 13 years ago
  29. 9d5d308 static analyzer: invalidate by-ref arguments passed to constructors in a 'new' expression. by Ted Kremenek · 13 years ago
  30. 3bab50b Fix bug in SimpleSValBuilder where '--' pointer arithmetic was treated like '++' pointer arithmetic. by Ted Kremenek · 13 years ago
  31. ec3310a Don't suggest dynamic_cast or typeid as code completion results when by Douglas Gregor · 13 years ago
  32. 99ace16 Template static data members can have weak_odr linkage, not just by John McCall · 13 years ago
  33. 1d1a679 Whoops. by John McCall · 13 years ago
  34. f25760e Objective-C++: The global namespace is an associated namespace of an by Douglas Gregor · 13 years ago
  35. 26fbc72 Ignore indirect field declarations. Fixes PR9570. by John McCall · 13 years ago
  36. 4955e57 Formatting. by John McCall · 13 years ago
  37. 772afb1 This test works now; enable it. by John McCall · 13 years ago
  38. bf1a667 RegionStoreManager::invalidateRegions: treat classes the same as structs. by Ted Kremenek · 13 years ago
  39. 755d849 After some discussion with Doug, we decided that it made a lot more sense by John McCall · 13 years ago
  40. 235c02f Teach GRState::getSValAsScalarOrLoc() about C++ references. by Ted Kremenek · 13 years ago
  41. 9fec9b1 C++ static analysis: also invalidate fields of objects that are the callees in C++ method calls. by Ted Kremenek · 13 years ago
  42. 1d01531 Fixup more objc rwriter bug having to do with by Fariborz Jahanian · 13 years ago
  43. 4bdbc0c If there's an invoke destination, we should use invoke instead of call when calling the __cxa_bad_typeid function. Fixes PR7400. by Anders Carlsson · 13 years ago
  44. 379b515 More __unknown_anytype work. by John McCall · 13 years ago
  45. 3ddcdd5 When we know that a dynamic_cast always returns null, we can make by Anders Carlsson · 13 years ago
  46. bc34b1d PR9669: implement correct checking for [dcl.init.string]p2. by Eli Friedman · 13 years ago
  47. 3d1eee2 Remove the CodeGenCXX/dyncast.cpp test; it isn't really super useful to match on huge chunks of LLVM output. by Anders Carlsson · 13 years ago
  48. fb8721c Simplify calling CheckPlaceholderExpr, converge on it in a few places, by John McCall · 13 years ago
  49. cd0b32e Strip off parens and no-op casts when deciding if an expr can be devirtualized. Fixes the second half of PR9660. by Anders Carlsson · 13 years ago
  50. b8bced0 Change CollectPrimaryBases to collect the bases in the right order. Fixes one half of PR9660. by Anders Carlsson · 13 years ago
  51. f65076e Enhance the diagnostic for literal float -> int conversions to suggest by Chandler Carruth · 13 years ago
  52. 52d6874 PR9580: Handle vectors correctly in ScalarExprEmitter::EmitRem. by Eli Friedman · 13 years ago
  53. 8d051e0 MSVC accepts that default parameters be redefined for member functions by Francois Pichet · 13 years ago
  54. a5fc472 Fix a bunch of major problems with __unknown_anytype and properly test by John McCall · 13 years ago
  55. 5536daa Make sure we or together the overflow flags of the multiply and add, so the by Eli Friedman · 13 years ago
  56. 067bbd0 strcat() and strncat() model additions to CStringChecker. by Lenny Maiorani · 13 years ago
  57. a49218e PR8369: make __attribute((regparm(0))) work correctly. Original patch by by Eli Friedman · 13 years ago
  58. b600669 Clean up the bool conversion warning. Group it with other conversion by Chandler Carruth · 13 years ago
  59. 88f0aed Add support for warning on general null pointer expressions of boolean by Chandler Carruth · 13 years ago
  60. 23aa9c8 add a __sync_swap builtin to fill out the rest of the __sync builtins. by Chris Lattner · 13 years ago
  61. 3617809 Fixes a rewrting bug of a property-dot syntax expression inside by Fariborz Jahanian · 13 years ago
  62. 5fe9872 Start overhauling static analyzer support for C++ constructors. The inlining support isn't complete, and needs by Ted Kremenek · 13 years ago
  63. b7bc34a Warn for any kind of initialization if initializer does not by Fariborz Jahanian · 13 years ago
  64. 584b9d6 Switch 'is possibly uninitialized' to 'may be uninitialized' based on by Chandler Carruth · 13 years ago
  65. f04eb2d Now that the analyzer is distinguishing between uninitialized uses that by Chandler Carruth · 13 years ago
  66. a21612f Teach -Wuninitialized to not warn about variables declared in C++ catch statements. by Ted Kremenek · 13 years ago
  67. f275150 Fronted/CC_LOG_DIAGNOSTICS: Add test case. by Daniel Dunbar · 13 years ago
  68. 1de4d4e Basic, untested implementation for an "unknown any" type requested by LLDB. by John McCall · 13 years ago
  69. 83eedee I can't figure out any reasonable way to make this test non-host-dependent, by John McCall · 13 years ago
  70. 96b4adc Wide Pascal strings should be of type wchar_t[] and not unsigned char[]. by Anders Carlsson · 13 years ago
  71. 759abb4 Fix lookup for class messages sent to qualified-class by Fariborz Jahanian · 13 years ago
  72. 01cb307 Refine rules for atomic property api to by Fariborz Jahanian · 13 years ago
  73. 6931743 Do not use IR marker for LLVM intrinsics by Peter Collingbourne · 13 years ago
  74. 98b8f16 When updating the retain summary based on {cf,ns}_consumed attributes, by John McCall · 13 years ago
  75. 018e02c Make this a -cc1 test with a triple and a target feature. by John McCall · 13 years ago
  76. 0f9d155 Anonymify this test. by John McCall · 13 years ago
  77. d688bc0 Implement the AVX cmp builtins as macros instead of static inlines. by John McCall · 13 years ago
  78. b3c4906 Diagnose a missing ')' on what looks like a statement expression. by John McCall · 13 years ago
  79. 97edcb6 Add a test case for r128957. It fixed a bug! by Devang Patel · 13 years ago
  80. 5fb6509 Fixes a regression caused by my last patch. by Fariborz Jahanian · 13 years ago
  81. 5ecb1df Emit debug info for function template parameters. by Devang Patel · 13 years ago
  82. 1d3a61a Generate atomic api for atomic properties (x86 and x86_64 by Fariborz Jahanian · 13 years ago
  83. b88fb02 Commit a bit of a hack to fully handle the situation where variables are by Chandler Carruth · 13 years ago
  84. 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 · 13 years ago
  85. b414c4f Fix PR9624 by explicitly disabling uninitialized warnings for direct self-init: by Chandler Carruth · 13 years ago
  86. d40066b Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numerous CFG and UninitializedValues analysis changes: by Ted Kremenek · 13 years ago
  87. ba690a4 Incomplete type does not have any size. by Devang Patel · 13 years ago
  88. 1659acb Change test/Analysis/idempotent-operations.c to output the .plist file in the test output directory. by Argyrios Kyrtzidis · 13 years ago
  89. 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 · 13 years ago
  90. f8adeef -Wuninitialized: don't warn about uninitialized variables in unreachable code. by Ted Kremenek · 13 years ago
  91. 5360c92 -Wuninitialized: don't issue fixit for initializer if a variable declaration already has an initializer. by Ted Kremenek · 13 years ago
  92. 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 · 13 years ago
  93. cccc02a PR9585: add __decltype as a keyword. While I'm here, alphabetize the list. by Eli Friedman · 13 years ago
  94. d593190 PR9615: make sure we destroy any temporaries returned by operator->. by Eli Friedman · 13 years ago
  95. 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 · 13 years ago
  96. 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 · 13 years ago
  97. 2166948 Make -Wheader-hygiene not complain about USING_NAMESPACE_THROUGH_MACRO in a non-header file. by Nico Weber · 13 years ago
  98. d765061 Apply a bug-fix patch from Marcin Kowalczyk to the source locations for by Chandler Carruth · 13 years ago
  99. 422ab7a Teach IdempotentOperationsChecker about paths aborted because ExprEngine didn't know how to handle a specific Expr type. by Ted Kremenek · 13 years ago
  100. 651ba52 Fixes a rewriter bug rewriting call to a byref by Fariborz Jahanian · 13 years ago