1. a548846 Added lval type (and tracking) for StringLiterals. by Ted Kremenek · 16 years ago
  2. 0fe33bc Added "nonlval::LValAsInteger" to represent abstract LVals casted to integers, allowing us to track lvals when they are casted back to pointers. by Ted Kremenek · 16 years ago
  3. 9704eac Added null dereference test involving arrays. by Ted Kremenek · 16 years ago
  4. c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 16 years ago
  5. 3603d73 Added missing expected-warning. by Ted Kremenek · 16 years ago
  6. b9ab690 Added null dereference test case looking for null dereferences involving MemberExpr. by Ted Kremenek · 16 years ago
  7. 6cdf16d More semantics checks of properties. Property implementation can implicitly use by Fariborz Jahanian · 16 years ago
  8. c35b9e4 Support for @dynamic AST build. by Fariborz Jahanian · 16 years ago
  9. f009795 Clean up handling of function redeclarations by Douglas Gregor · 16 years ago
  10. 1a1d92a Fix PR2236 Add test Implement feedback from Chris re: PR1998 by Nate Begeman · 16 years ago
  11. 65bb89c Two improvements to initializer parsing: by Chris Lattner · 16 years ago
  12. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  13. 59b6d5a fix __attribute__(format) for struct function pointer fields by Nuno Lopes · 17 years ago
  14. 576b3ad Added test cases to test for reference count leaks. by Ted Kremenek · 17 years ago
  15. 274d009 Add extra test cases to test "escaping" for the reference count checker. by Ted Kremenek · 17 years ago
  16. d59d96f Update CF reference count checker test case to illustrate the use of by Ted Kremenek · 17 years ago
  17. f87821c Added test case illustrating the use of '&'. by Ted Kremenek · 17 years ago
  18. b29b427 Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
  19. 896436e Updated test cases so that they do not emit warnings for dead stores. by Ted Kremenek · 17 years ago
  20. 49a2fd2 Added test case to dead stores checker. by Ted Kremenek · 17 years ago
  21. e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
  22. 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
  23. d98d975 Fix PR2220, making diagnostics for unexpected tokens in pp expressions by Chris Lattner · 17 years ago
  24. 72e1c6c this started failing because a GEP was constant folded, by Chris Lattner · 17 years ago
  25. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
  26. a0df99f Changed behavior of how we handle "NULL" summaries: just call by Ted Kremenek · 17 years ago
  27. 940b1d8 Fixed some logic errors in the CF ref count checker; we now can detect simple by Ted Kremenek · 17 years ago
  28. d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
  29. def026a typedef void T; void f(T); by Chris Lattner · 17 years ago
  30. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
  31. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  32. b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 17 years ago
  33. 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 17 years ago
  34. 9d294b9 remove the old non-parallel test system. 'make' in clang/test now runs by Chris Lattner · 17 years ago
  35. 3825c2e reject 'int test(x, x) int x; {}' by Chris Lattner · 17 years ago
  36. aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
  37. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  38. a798ebc Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
  39. f81557c Fix PR2049, updating Eli's patch that fixes to mainline. This produces incorrect by Chris Lattner · 17 years ago
  40. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
  41. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
  42. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
  43. fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 17 years ago
  44. 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
  45. 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
  46. 2f54af4 Added path-sensitive null dereference test case. by Ted Kremenek · 17 years ago
  47. 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
  48. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
  49. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
  50. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
  51. 02737ed Added path-sensitive check for return statements that return the address by Ted Kremenek · 17 years ago
  52. 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
  53. a7b402d Only have the rewriter produce a file when there are no errors. by Steve Naroff · 17 years ago
  54. 9511096 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago
  55. 4ba6283 Expanded NSString checking to check for nil for a few more methods. by Ted Kremenek · 17 years ago
  56. 9b3fdea Add line SourceLocation to NSString checks. by Ted Kremenek · 17 years ago
  57. 49535ef Fix rewriter tests to work with new output file logic. This changes forces the output to standard out (rather than generate a .cpp file, which is the new default for the rewriter). by Steve Naroff · 17 years ago
  58. 5f67d13 Added test case for static analysis to warn about passing uninitialized values as arguments (not the receiver) in message expressions. by Ted Kremenek · 17 years ago
  59. 2daf5b6 Added test case for static analyzer to detect uses of uninitialized pointers as receivers in Objective-C message expressions. by Ted Kremenek · 17 years ago
  60. 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
  61. 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
  62. 4cc34cb The newest version of valgrind, 3.3.0, no longer appends PIDs to log filenames by Sam Bishop · 17 years ago
  63. 5fb5c6a Changed merge operation for uninitialized values analysis to "intersect" (previous union). by Ted Kremenek · 17 years ago
  64. c68ab77 Teach the rewriter how to respect the -o option. by Chris Lattner · 17 years ago
  65. 21fbe0d fix this test. by Chris Lattner · 17 years ago
  66. 49d8dc5 Only invoke the preprocessor; it's the only thing being tested. Also, check by Sam Bishop · 17 years ago
  67. d8b28d7 Use the -E option when invoking clang. Only the preprocessor is by Sam Bishop · 17 years ago
  68. 1e2db03 Add ability to run clang tests under valgrind. Patch by Sam Bishop. by Gabor Greif · 17 years ago
  69. 5267d7c reduce chattyness of makefiles by Gabor Greif · 17 years ago
  70. 65307dc scan testdirs only once, patch by Mike Stump, thanks! by Gabor Greif · 17 years ago
  71. 0fdf06e Convert tabs to spaces. by Ted Kremenek · 17 years ago
  72. 17feadf add 'clean' targets, make sure that 'make test' works after 'make clean' by Gabor Greif · 17 years ago
  73. cf20b48 let the %t magic happen, thanks Chris! by Gabor Greif · 17 years ago
  74. b4992db finishing touches: teminate the dots with a newline by Gabor Greif · 17 years ago
  75. 119c65d Implemented verbose mode. by Gabor Greif · 17 years ago
  76. e1d2647 Simplify further by creating *.testresults files by Gabor Greif · 17 years ago
  77. 53c5567 Get rid of the creation of secondary makefile "Makefile.tests". by Gabor Greif · 17 years ago
  78. 947a8b5 More review feedback implemented: by Gabor Greif · 17 years ago
  79. 0f23303 Actually expand the %t1 patterns (in RUN: lines) to a unique by Gabor Greif · 17 years ago
  80. 5ca1b5a Second round of review feedback. by Gabor Greif · 17 years ago
  81. 8fb64e8 implement a bit of feedback: print dots by Gabor Greif · 17 years ago
  82. 021e970 First draft of a parallelized test methodology. Improvements soon. by Gabor Greif · 17 years ago
  83. c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 17 years ago
  84. 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 17 years ago
  85. 5518e7c Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 17 years ago
  86. b1f4080 Since the rewriter now outputs C++, it no longer makes sense to pipe the output to clang. by Steve Naroff · 17 years ago
  87. 15bd799 rewriter tests are darwin specific, don't run them on other platforms. by Chris Lattner · 17 years ago
  88. 6b88450 implement simple support for arbitrary token lookahead. Change the by Chris Lattner · 17 years ago
  89. b6789ca Add new test by Nate Begeman · 17 years ago
  90. aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 17 years ago
  91. 2a625bc remove two obsolete tests, not sure why my previous commit didn't commit the removal. by Chris Lattner · 17 years ago
  92. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  93. 7b937ae The operand to the visibility attribute is required to be a quoted string, not a bare identifier. by Chris Lattner · 17 years ago
  94. 69153db move deprecated -> attributes.c by Chris Lattner · 17 years ago
  95. 15f3622 The attribute nothrow maps to llvm attribute nounwind. Fix testcase. by Gabor Greif · 17 years ago
  96. 7a03452 Chris added this testcase with r47837. The mail only shows one todo-warning but I see 3. Strangeness. Correcting lines 16 and 24. by Gabor Greif · 17 years ago
  97. f89e88d fix codegen support for functions that are nothrow and noreturn. by Chris Lattner · 17 years ago
  98. ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
  99. bcb2b61 Fix http://llvm.org/bugs/show_bug.cgi?id=2103. by Steve Naroff · 17 years ago
  100. da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 17 years ago