1. 030ff0c Semantic checking of constructor declarations and classification of default/copy constructors by Douglas Gregor · 16 years ago
  2. 60d62c2 Implement basic support for converting constructors in user-defined by Douglas Gregor · 16 years ago
  3. 0777972 Implement semantic checking of static_cast and dynamic_cast. by Sebastian Redl · 16 years ago
  4. df2aa1e Add test code for array initialization. by Zhongxing Xu · 16 years ago
  5. b48fe38 Add support for parsing and representing C++ constructor declarations. by Douglas Gregor · 16 years ago
  6. e10b0f2 "One" line fix for -parse-noop failure, "id" and several other things by Daniel Dunbar · 16 years ago
  7. bea06e4 Quick fix for PR2950, infinite loop generating debug info for by Daniel Dunbar · 16 years ago
  8. beb62c5 Added missing 'expected-warning' by Ted Kremenek · 16 years ago
  9. fab6f22 Enhance compound literal test case. by Ted Kremenek · 16 years ago
  10. 64cc62d Add missing "expected warning". by Ted Kremenek · 16 years ago
  11. ccb55e3 Add method that will be invoked using the dot-syntax just to test that the missing -dealloc checker handles it. by Ted Kremenek · 16 years ago
  12. d4a0798 Improve compound literal test case. by Ted Kremenek · 16 years ago
  13. 997c155 Patch by Nikita Zhuk: test case for fix for false positive reported in PR2978. by Ted Kremenek · 16 years ago
  14. 0c0e7a6 NeXT: Emit protocol objects lazily. by Daniel Dunbar · 16 years ago
  15. 2a72f7b Remove workaround for reference. No longer necessary. by Sebastian Redl · 16 years ago
  16. a5a35e1 Fix missing %s in run string causing hang during tests. by Sebastian Redl · 16 years ago
  17. 4f03fd6 Fix crash reported in PR2923 where a function declared using typeof(another_function) would have FunctionDecl::getNumParams() return the number of parameters in the original function type and not the number of parameters in the actual FunctionDecl. by Ted Kremenek · 16 years ago
  18. 6fc17ff Simplify and correct the check for function redefinitions. This does two things: by Douglas Gregor · 16 years ago
  19. f70bdb9 Implement overloading rules for reference binding by Douglas Gregor · 16 years ago
  20. 818ce48 Temporary disable the const-object-declaration-without-initializer check, because it depends on linkage-specifier semantics we don't yet have by Douglas Gregor · 16 years ago
  21. 15da57e Tweak Sema::CheckReferenceInit so that it (optionally) computes an by Douglas Gregor · 16 years ago
  22. 27c8dc0 Implement initialization of a reference (C++ [dcl.init.ref]) as part by Douglas Gregor · 16 years ago
  23. af668b0 Add attribute always_inline support. by Daniel Dunbar · 16 years ago
  24. 1a19c29 Skip random pathname characters better. I had a 5 in mine. by Mike Stump · 16 years ago
  25. 1c90363 Add test case to exercise IRgen "unsupported" path (mostly cleanup). by Daniel Dunbar · 16 years ago
  26. c532f63 Add 'expected-warning' for braces around scalar initializer by Ted Kremenek · 16 years ago
  27. 194aade Added compound literal test case. by Ted Kremenek · 16 years ago
  28. 49badde Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  29. 8b3f6b5 Fix some invalid casts that are detected by Sema now or soon. by Sebastian Redl · 16 years ago
  30. 3dda64e When destroying a translation unit, deallocate its owned declarations in reverse order, because there may be dependencies among the declarations. by Douglas Gregor · 16 years ago
  31. a5ad863 Fix <rdar://problem/6315646> clang on xcode: error: invalid operands to binary expression ('id<NSTableViewDelegate>' and 'XCExtendedArrayController *'). by Steve Naroff · 16 years ago
  32. 92429dd Add test for SCA region store. by Zhongxing Xu · 16 years ago
  33. 234a7d2 Add test for SCA region store. by Zhongxing Xu · 16 years ago
  34. 0fc73f7 implement some more FIXMEs, by rejecting more bogus stuff in objc mode. by Chris Lattner · 16 years ago
  35. 79ed6b5 add some simple designator testcases. Reject things like this: by Chris Lattner · 16 years ago
  36. 5b2316a Do not crash when performing VisitLValue on union types. This fixes PR 2948. by Ted Kremenek · 16 years ago
  37. 2e97120 Add StringLiteral test code. by Zhongxing Xu · 16 years ago
  38. a596209 Unbreak the test by.. removing a space. (clang protested that -verify only works on single input files). by Argyrios Kyrtzidis · 16 years ago
  39. 971c4fa -Add support for cv-qualifiers after function declarators. by Argyrios Kyrtzidis · 16 years ago
  40. f4b3548 This test no longer is marked XFAIL. by Ted Kremenek · 16 years ago
  41. 6cbd3df PR2942: FunctionDecls by typedef crash the C++ front-end by Douglas Gregor · 16 years ago
  42. 2f639b9 Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian Redl. by Douglas Gregor · 16 years ago
  43. 72e1682 Add random array and struct test code for SCA. by Zhongxing Xu · 16 years ago
  44. b451bc1 Use #define trickery to de-XFAIL test/Coverage/codegen-gnu.m while by Daniel Dunbar · 16 years ago
  45. 8de8c36 Use #define trickery to de-XFAIL test/Coverage/codegen-next.m while by Daniel Dunbar · 16 years ago
  46. ac620de PR2919: __builtin_types_compatible_p strips CRV qualifiers. by Daniel Dunbar · 16 years ago
  47. 94b1dd2 First non-embarrassing cut at checking for ambiguous derived-to-base by Douglas Gregor · 16 years ago
  48. c6cb77f Fix regression in comparison of qualified id; == operator was being by Daniel Dunbar · 16 years ago
  49. f74675b Temporarily mark this test XFAIL. by Ted Kremenek · 16 years ago
  50. bc0805a Add support for conversions from a pointer-to-derived to a by Douglas Gregor · 16 years ago
  51. 3ad2cc8 Warn about potentially leaked objects that are returned from methods whose names do not follow the Cocoa Memory Management guidelines. by Ted Kremenek · 16 years ago
  52. 8970fea Fix <rdar://problem/6311947> clang on xcode (regression): error: use of undeclared identifier 'expandedValue'. by Steve Naroff · 16 years ago
  53. 64e859a Enhance reference-count checker to correctly identify CG "release" functions. This fixes <rdar://problem/6303488>. by Ted Kremenek · 16 years ago
  54. 7692ed6 Fix <rdar://problem/6257675> error: member reference base type ('NSUserDefaults *') is not a structure or union. by Steve Naroff · 16 years ago
  55. f8268ae Add representation of base classes in the AST, and verify that we by Douglas Gregor · 16 years ago
  56. c498848 Add test case for FuncDecl and function pointer variable. by Zhongxing Xu · 16 years ago
  57. 5737326 Implement ranking of standard conversion sequences by their qualification by Douglas Gregor · 16 years ago
  58. 9b6e2d2 Fix a thinko in the qualification-conversion check when the qualificaitons are disjoint, and add some overloading-based tests of qualification conversions by Douglas Gregor · 16 years ago
  59. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  60. bd589e0 Add coverage of part of getPrimaryDecl that was failing prior to by Daniel Dunbar · 16 years ago
  61. 2bd0372 Fix <rdar://problem/6257645> clang static analyzer crashes when encountering blocks as objects by Steve Naroff · 16 years ago
  62. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago
  63. d7333c2 Fix a crasher during error recovery in Parser::ParseObjCTypeName(). by Steve Naroff · 16 years ago
  64. 0fe7060 Tweak an expected-error to match the output. IMHO it is better to diagnose 'int (void)' because it has the same meaning in C and C++. by Gabor Greif · 16 years ago
  65. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  66. c13b6e2 Further improve path-sensitivity with divide-by-zero checking by assuming that a denominator cannot be zero even when the result of an '/' or '%' expression is unknown. by Ted Kremenek · 16 years ago
  67. 9253b0f Added test case inspired by <rdar://6268365>: recover path-sensitivity after compound assignment when the result of the assignment is not known. by Ted Kremenek · 16 years ago
  68. 18bc164 Fix <rdar://problem/6268365> Parser rejects property (dot notation) access on id<protocol>. by Steve Naroff · 16 years ago
  69. 87f3b93 Sema::CheckCompareOperands() and ASTContext::mergeTypes(): Change handling of ObjC qualified id types to be consistent with gcc. This changes a handful of test case errors into warnings (diff will tell you which cases have changed). by Steve Naroff · 16 years ago
  70. cd9f4b3 More property attribute recovery improvements. Instead of this: by Chris Lattner · 16 years ago
  71. 9186764 add testcase for the recovery improvements in my last patch. by Chris Lattner · 16 years ago
  72. da3253d fix a crash on unnamed properties like: @property (readonly) int : 4; by Chris Lattner · 16 years ago
  73. bc662af refactor a bunch of code: by Chris Lattner · 16 years ago
  74. 639e2d3 Fix rdar://6257721 by tightening up the block "snapshot" check, and by Chris Lattner · 16 years ago
  75. aab740a Support attributes in *yet another* place. Is there any place you by Chris Lattner · 16 years ago
  76. 7399ee0 Fix a parser bug where we let attributes interfere with our disambiguation by Chris Lattner · 16 years ago
  77. d3f2c10 Improve attribute parsing & tests. by Daniel Dunbar · 16 years ago
  78. 6dfe2f5 Add support in GRExprEngine for UnaryOperator::AlignOf. This fixes one crash report in PR 2796. by Ted Kremenek · 16 years ago
  79. 5c456fe Use "VisitLValue" when processing the base for "x.f" field accesses, and "Visit" when processing the base for "x->f" field accesses. by Ted Kremenek · 16 years ago
  80. e5582f0 Added vec_set intrinsics by Mon P Wang · 16 years ago
  81. 63c3a5f Add some uses of PredefinedExpr to language coverage includes. by Daniel Dunbar · 16 years ago
  82. dacd67a This test now passes again. by Ted Kremenek · 16 years ago
  83. 63ffb78 Test now passes. by Ted Kremenek · 16 years ago
  84. b6b81d1 "Implement" GRExprEngine::VisitLValue for ObjCPropertyRefExpr. This is only a bandid; we need to properly handle properties by using locv/nonloc objects and specially handling property assignments in the transfer function for BinaryOperator. by Ted Kremenek · 16 years ago
  85. e5fd2d9 Exercise #pragma pack(pop, <width>) in test case. by Daniel Dunbar · 16 years ago
  86. ef8b28e Add test case for array and struct variable lvalue evaluation. by Zhongxing Xu · 16 years ago
  87. 5273f51 Quick patch for PR2784, assert genereting debug info for opaque by Daniel Dunbar · 16 years ago
  88. 3397e46 Mark these tests XFAIL. We need to add back assumption logic when doing array and field accesses. by Ted Kremenek · 16 years ago
  89. 4fa4ab6 Fix <rdar://problem/6239726> Parser rejects: type of property 'list' does not match type of ivar by Steve Naroff · 16 years ago
  90. 5db4b3f Teach tryEvaluate that fabs, copysign, and unary +/- are constants for by Daniel Dunbar · 16 years ago
  91. 3b0db90 Implement #pragma pack use in structure packing. The general approach by Daniel Dunbar · 16 years ago
  92. 259b0d9 Issue a warning when there's an ambiguous function declarator (that could be a direct initializer for a variable defition). by Argyrios Kyrtzidis · 16 years ago
  93. d6caa9e Fix this bug: by Argyrios Kyrtzidis · 16 years ago
  94. ca74360 Tighten up blocks rewriter to handle casts and some other interesting cases. by Steve Naroff · 16 years ago
  95. 380277e Enhance dead store checker to not flag preincrements to dead variables where the preincrement is a subexpression, e.g. foo(++x); This can cause false negatives, but will remove a whole class of false positives. by Ted Kremenek · 16 years ago
  96. 00231ee Test commit. by Daniel Dunbar · 16 years ago
  97. 3957907 Downgrade incompatibilities with objc qualified types (e.g. id <P>) to warnings. by Steve Naroff · 16 years ago
  98. b8b10e3 Fix typo in testcase. by Daniel Dunbar · 16 years ago
  99. 94dcecb add a testcase. by Chris Lattner · 16 years ago
  100. 4cde927 Add Sema implementation of #pragma pack stack. by Daniel Dunbar · 16 years ago