1. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  2. bd589e0 Add coverage of part of getPrimaryDecl that was failing prior to by Daniel Dunbar · 16 years ago
  3. 2bd0372 Fix <rdar://problem/6257645> clang static analyzer crashes when encountering blocks as objects by Steve Naroff · 16 years ago
  4. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago
  5. d7333c2 Fix a crasher during error recovery in Parser::ParseObjCTypeName(). by Steve Naroff · 16 years ago
  6. 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
  7. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  8. 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
  9. 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
  10. 18bc164 Fix <rdar://problem/6268365> Parser rejects property (dot notation) access on id<protocol>. by Steve Naroff · 16 years ago
  11. 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
  12. cd9f4b3 More property attribute recovery improvements. Instead of this: by Chris Lattner · 16 years ago
  13. 9186764 add testcase for the recovery improvements in my last patch. by Chris Lattner · 16 years ago
  14. da3253d fix a crash on unnamed properties like: @property (readonly) int : 4; by Chris Lattner · 16 years ago
  15. bc662af refactor a bunch of code: by Chris Lattner · 16 years ago
  16. 639e2d3 Fix rdar://6257721 by tightening up the block "snapshot" check, and by Chris Lattner · 16 years ago
  17. aab740a Support attributes in *yet another* place. Is there any place you by Chris Lattner · 16 years ago
  18. 7399ee0 Fix a parser bug where we let attributes interfere with our disambiguation by Chris Lattner · 16 years ago
  19. d3f2c10 Improve attribute parsing & tests. by Daniel Dunbar · 16 years ago
  20. 6dfe2f5 Add support in GRExprEngine for UnaryOperator::AlignOf. This fixes one crash report in PR 2796. by Ted Kremenek · 16 years ago
  21. 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
  22. e5582f0 Added vec_set intrinsics by Mon P Wang · 16 years ago
  23. 63c3a5f Add some uses of PredefinedExpr to language coverage includes. by Daniel Dunbar · 16 years ago
  24. dacd67a This test now passes again. by Ted Kremenek · 16 years ago
  25. 63ffb78 Test now passes. by Ted Kremenek · 16 years ago
  26. 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
  27. e5fd2d9 Exercise #pragma pack(pop, <width>) in test case. by Daniel Dunbar · 16 years ago
  28. ef8b28e Add test case for array and struct variable lvalue evaluation. by Zhongxing Xu · 16 years ago
  29. 5273f51 Quick patch for PR2784, assert genereting debug info for opaque by Daniel Dunbar · 16 years ago
  30. 3397e46 Mark these tests XFAIL. We need to add back assumption logic when doing array and field accesses. by Ted Kremenek · 16 years ago
  31. 4fa4ab6 Fix <rdar://problem/6239726> Parser rejects: type of property 'list' does not match type of ivar by Steve Naroff · 16 years ago
  32. 5db4b3f Teach tryEvaluate that fabs, copysign, and unary +/- are constants for by Daniel Dunbar · 16 years ago
  33. 3b0db90 Implement #pragma pack use in structure packing. The general approach by Daniel Dunbar · 16 years ago
  34. 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
  35. d6caa9e Fix this bug: by Argyrios Kyrtzidis · 16 years ago
  36. ca74360 Tighten up blocks rewriter to handle casts and some other interesting cases. by Steve Naroff · 16 years ago
  37. 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
  38. 00231ee Test commit. by Daniel Dunbar · 16 years ago
  39. 3957907 Downgrade incompatibilities with objc qualified types (e.g. id <P>) to warnings. by Steve Naroff · 16 years ago
  40. b8b10e3 Fix typo in testcase. by Daniel Dunbar · 16 years ago
  41. 94dcecb add a testcase. by Chris Lattner · 16 years ago
  42. 4cde927 Add Sema implementation of #pragma pack stack. by Daniel Dunbar · 16 years ago
  43. c106c10 Add a new -dump-raw-tokens option, which allows us to see raw tokens. by Chris Lattner · 16 years ago
  44. 8f0fd62 Tests for return statement checks by Seo Sanghyeon · 16 years ago
  45. de933f0 Fix a bug that crashed clang when parsing this: by Argyrios Kyrtzidis · 16 years ago
  46. 3f2a8a0 In ParseParenDeclarator match "D.setGroupingParens(true);" with another setGroupingParens call after the ')' is parsed. by Argyrios Kyrtzidis · 16 years ago
  47. 73a0d88 Implement support for C++ direct initializers in declarations, e.g. "int x(1);". by Argyrios Kyrtzidis · 16 years ago
  48. 4bf203c fix incorrect rdar number. by Chris Lattner · 16 years ago
  49. eb52b44 __CONSTANT_CFSTRINGS__ should be defined even in C mode, otherwise the CFSTR by Chris Lattner · 16 years ago
  50. 506ff88 Make sema and codegen allow __builtin___CFStringMakeConstantString as a valid by Chris Lattner · 16 years ago
  51. 46cfefa "Enhance" CheckArithmeticConstantExpression to accept ?: with a constant by Chris Lattner · 16 years ago
  52. e25d270 Allow variadic arguments without named ones for C++, e.g. "void(...);" by Argyrios Kyrtzidis · 16 years ago
  53. d3dbbb6 Add some text from the C++ standard and additional ambiguity resolution tests. by Argyrios Kyrtzidis · 16 years ago
  54. 78c8d80 Handle ambiguities between expressions and type-ids that occur inside parentheses, e.g.: by Argyrios Kyrtzidis · 16 years ago
  55. b9f3419 Found a subtle bug caused by an implicit enum-to-bool conversion (of the TentativeParsingResult enum). by Argyrios Kyrtzidis · 16 years ago
  56. 7709182 Add parsing of the sentinel attribute. Still need to create the attribute. by Anders Carlsson · 16 years ago
  57. bbc70c0 Disambiguate between a declaration or an expression, in the 'for-init-statement' part of a 'for' statement. by Argyrios Kyrtzidis · 16 years ago
  58. ca35baa Fix Parser::isCXXConditionDeclaration to properly resolve declarations. by Argyrios Kyrtzidis · 16 years ago
  59. a8a4598 Disambiguate between a declaration or expression for the 'condition' part of a if/switch/while/for statement. by Argyrios Kyrtzidis · 16 years ago
  60. 1ee2c43 Consider GNU attributes when doing ambiguity resolution. by Argyrios Kyrtzidis · 16 years ago
  61. eb15425 Add X86 builtin code generation test case. by Daniel Dunbar · 16 years ago
  62. ea7a31f Improve C language testing coverage. by Daniel Dunbar · 16 years ago
  63. 1768a62 Add some builtins to codegen test case. by Daniel Dunbar · 16 years ago
  64. 5186906 Add -rewrite-macros test case. by Daniel Dunbar · 16 years ago
  65. a6f6c71 Coverage test for targets. by Daniel Dunbar · 16 years ago
  66. 075e3c1 Improve codegen coverage tests. by Daniel Dunbar · 16 years ago
  67. 9173e91 Append the test runs with '&&'. by Argyrios Kyrtzidis · 16 years ago
  68. 5404a15 Resolve ambiguous C++ statements (C++ 6.8p1). by Argyrios Kyrtzidis · 16 years ago
  69. 417dd17 Add coverage tests of C and Obj-C language features. by Daniel Dunbar · 16 years ago
  70. b7219f8 Desensitize env-include-paths.c to the directory it is running in. by Daniel Dunbar · 16 years ago
  71. bb95255 Bug fix, CPATH="" does not add '.' to search path. by Daniel Dunbar · 16 years ago
  72. ae3c16c Add test/Driver. - env-include-paths.c is XFAIL as it exposed a bug. by Daniel Dunbar · 16 years ago
  73. f7a726b De-XFAIL test/Parser/pragma-pack.c by Daniel Dunbar · 16 years ago
  74. 7499cb5 switch to using -verify by Chris Lattner · 16 years ago
  75. 4f2670d Move the expected-warning lines to a place that clang -verify will pick them by Chris Lattner · 16 years ago
  76. fcdd8fe Add Parser support for #pragma pack by Daniel Dunbar · 16 years ago
  77. 7d07664 Merge postfix attributes on record decls. by Daniel Dunbar · 16 years ago
  78. ae3f491 Add Builtins.def attribute for "can be a constant expression". by Daniel Dunbar · 16 years ago
  79. de45428 Add support for format string checking of object-size checking by Daniel Dunbar · 16 years ago
  80. 8af6a45 Changed Sema::CheckForConstantInitializer to allow global block literals. by Steve Naroff · 16 years ago
  81. cc9ac41 Enhance NSError** checking with analogous checking for CFErrorRef*. by Ted Kremenek · 16 years ago
  82. 9f67ede Added test case. by Ted Kremenek · 16 years ago
  83. ad2dc71 NeXT: Update to use CreateRuntimeFunction for the routines it imports. by Daniel Dunbar · 16 years ago
  84. 037cda5 Fix <rdar://problem/6191148> [sema] Objective-C method lookup (at global scope) fails to handle overloaded selectors properly. by Steve Naroff · 16 years ago
  85. 33e2c5f fix test for latest changes in llvm asm representation by Nuno Lopes · 16 years ago
  86. f77d545 Fix va_arg handling to do argument decaying at the correct place. This by Chris Lattner · 16 years ago
  87. b440686 Teach Sema::CheckAssignmentConstraints() to allow assignments between id and block pointer types (^{}). by Steve Naroff · 16 years ago
  88. 6c4088e Fix <rdar://problem/6251012> clang: Blocks are objects too. by Steve Naroff · 16 years ago
  89. 5e0a74f Fix <rdar://problem/6253149> property declaration doesn't declare getter and setter. by Steve Naroff · 16 years ago
  90. e84a864 Fix <rdar://problem/6252129> implementation of method in category doesn't effectively declare it for methods below. by Steve Naroff · 16 years ago
  91. ae530cf Fix <rdar://problem/6252108> assigning to argument passed to block should not require __block. by Steve Naroff · 16 years ago
  92. 891ed9a Fix rdar://6252231 - cannot call vsnprintf with va_list on x86_64, by Chris Lattner · 16 years ago
  93. f7037b1 Fix rdar://6251437, references to enum constant decls in a block by Chris Lattner · 16 years ago
  94. 59f5394 Fix <rdar://problem/6252216> compare block to NULL. by Steve Naroff · 16 years ago
  95. 538afe3 Fix <rdar://problem/6252226> parser thinks block argument is undefined identifier in NSServices.m by Steve Naroff · 16 years ago
  96. 0cb45f6 Remove automagic substitution of %llvmgcc - Is unused and somewhat unreliable. by Daniel Dunbar · 16 years ago
  97. ced4fcb Fix function-attributes test case to not rely on llvm-gcc. by Daniel Dunbar · 16 years ago
  98. d58139e Fix attributes test case to not run clang umpteen times. by Daniel Dunbar · 16 years ago
  99. d2025e2 Add more control-flow to test case. by Ted Kremenek · 16 years ago
  100. 610a09e Add CFG support for implicit-control flow for VLA size expressions within an SizeOfAlignOfTypeExpr. by Ted Kremenek · 16 years ago