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