1. f81557c Fix PR2049, updating Eli's patch that fixes to mainline. This produces incorrect by Chris Lattner · 16 years ago
  2. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 16 years ago
  3. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 16 years ago
  4. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 16 years ago
  5. fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 16 years ago
  6. 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
  7. 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 16 years ago
  8. 2f54af4 Added path-sensitive null dereference test case. by Ted Kremenek · 16 years ago
  9. 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 16 years ago
  10. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 16 years ago
  11. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 16 years ago
  12. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 16 years ago
  13. 02737ed Added path-sensitive check for return statements that return the address by Ted Kremenek · 16 years ago
  14. 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 16 years ago
  15. a7b402d Only have the rewriter produce a file when there are no errors. by Steve Naroff · 16 years ago
  16. 9511096 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 16 years ago
  17. 4ba6283 Expanded NSString checking to check for nil for a few more methods. by Ted Kremenek · 16 years ago
  18. 9b3fdea Add line SourceLocation to NSString checks. by Ted Kremenek · 16 years ago
  19. 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
  20. 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
  21. 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
  22. 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 16 years ago
  23. 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 16 years ago
  24. 4cc34cb The newest version of valgrind, 3.3.0, no longer appends PIDs to log filenames by Sam Bishop · 16 years ago
  25. 5fb5c6a Changed merge operation for uninitialized values analysis to "intersect" (previous union). by Ted Kremenek · 16 years ago
  26. c68ab77 Teach the rewriter how to respect the -o option. by Chris Lattner · 16 years ago
  27. 21fbe0d fix this test. by Chris Lattner · 16 years ago
  28. 49d8dc5 Only invoke the preprocessor; it's the only thing being tested. Also, check by Sam Bishop · 16 years ago
  29. d8b28d7 Use the -E option when invoking clang. Only the preprocessor is by Sam Bishop · 16 years ago
  30. 1e2db03 Add ability to run clang tests under valgrind. Patch by Sam Bishop. by Gabor Greif · 16 years ago
  31. 5267d7c reduce chattyness of makefiles by Gabor Greif · 16 years ago
  32. 65307dc scan testdirs only once, patch by Mike Stump, thanks! by Gabor Greif · 16 years ago
  33. 0fdf06e Convert tabs to spaces. by Ted Kremenek · 16 years ago
  34. 17feadf add 'clean' targets, make sure that 'make test' works after 'make clean' by Gabor Greif · 16 years ago
  35. cf20b48 let the %t magic happen, thanks Chris! by Gabor Greif · 16 years ago
  36. b4992db finishing touches: teminate the dots with a newline by Gabor Greif · 16 years ago
  37. 119c65d Implemented verbose mode. by Gabor Greif · 16 years ago
  38. e1d2647 Simplify further by creating *.testresults files by Gabor Greif · 16 years ago
  39. 53c5567 Get rid of the creation of secondary makefile "Makefile.tests". by Gabor Greif · 16 years ago
  40. 947a8b5 More review feedback implemented: by Gabor Greif · 16 years ago
  41. 0f23303 Actually expand the %t1 patterns (in RUN: lines) to a unique by Gabor Greif · 16 years ago
  42. 5ca1b5a Second round of review feedback. by Gabor Greif · 16 years ago
  43. 8fb64e8 implement a bit of feedback: print dots by Gabor Greif · 16 years ago
  44. 021e970 First draft of a parallelized test methodology. Improvements soon. by Gabor Greif · 16 years ago
  45. c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 16 years ago
  46. 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 16 years ago
  47. 5518e7c Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 16 years ago
  48. b1f4080 Since the rewriter now outputs C++, it no longer makes sense to pipe the output to clang. by Steve Naroff · 16 years ago
  49. 15bd799 rewriter tests are darwin specific, don't run them on other platforms. by Chris Lattner · 16 years ago
  50. 6b88450 implement simple support for arbitrary token lookahead. Change the by Chris Lattner · 16 years ago
  51. b6789ca Add new test by Nate Begeman · 16 years ago
  52. aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 16 years ago
  53. 2a625bc remove two obsolete tests, not sure why my previous commit didn't commit the removal. by Chris Lattner · 16 years ago
  54. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 16 years ago
  55. 7b937ae The operand to the visibility attribute is required to be a quoted string, not a bare identifier. by Chris Lattner · 16 years ago
  56. 69153db move deprecated -> attributes.c by Chris Lattner · 16 years ago
  57. 15f3622 The attribute nothrow maps to llvm attribute nounwind. Fix testcase. by Gabor Greif · 16 years ago
  58. 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
  59. f89e88d fix codegen support for functions that are nothrow and noreturn. by Chris Lattner · 16 years ago
  60. ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 16 years ago
  61. bcb2b61 Fix http://llvm.org/bugs/show_bug.cgi?id=2103. by Steve Naroff · 16 years ago
  62. da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 16 years ago
  63. fce90e3 testcase for attr deprecated, by Nuno Lopes. by Chris Lattner · 16 years ago
  64. 8137335 Implement codegen for the following static var init. by Lauro Ramos Venancio · 16 years ago
  65. 7695f70 Fix a bug in ConvertAsmString function. by Lauro Ramos Venancio · 16 years ago
  66. a5694b8 Convert x86 target specific inline asm constraints to LLVM. by Lauro Ramos Venancio · 16 years ago
  67. 0184cc7 Fix PR2086. by Lauro Ramos Venancio · 16 years ago
  68. 146ccd4 Fix PR2090, a typo in digraph processing. by Chris Lattner · 16 years ago
  69. 86e07b6 add a test case by Nate Begeman · 16 years ago
  70. cca196b Some const initializer tests for stuff I just committed. by Eli Friedman · 16 years ago
  71. a269ebf implement codegen support for sizeof(void), fixing PR2080. by Chris Lattner · 16 years ago
  72. 7380466 add some semantic checks for address spaces. by Chris Lattner · 16 years ago
  73. 145cd89 Simplify aggregate initilizer implementation. Use the CodeGenModule::EmitConstantExpr method when by Lauro Ramos Venancio · 16 years ago
  74. 49581f4 fix the second half of PR2041: __restrict is ok in c90 mode, even if by Chris Lattner · 16 years ago
  75. 95050fa A global without initializer must be emitted as weak. Fix Olden/bh test. by Lauro Ramos Venancio · 16 years ago
  76. 305762c Implement multi-dimension array initalizer. Fix McCat/08-main test. by Lauro Ramos Venancio · 16 years ago
  77. a0992b6 by Steve Naroff · 16 years ago
  78. 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 16 years ago
  79. d3f2f79 Implemnt isVariablyModifiedType correctly. by Eli Friedman · 16 years ago
  80. 19a1d7c implement codegen support for aggregates casted to void. by Chris Lattner · 16 years ago
  81. fea90b8 Implement extern block var. by Lauro Ramos Venancio · 16 years ago
  82. 5a1b0c4 Add more tests by Anders Carlsson · 16 years ago
  83. e9ba323 Fix CheckEndOfDirective to diagnose lines that contain macros that expand to by Chris Lattner · 16 years ago
  84. 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 16 years ago
  85. 3e5849e Fix PR2041: restrict is not a keyword in c90. by Chris Lattner · 16 years ago
  86. f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 16 years ago
  87. 708eed5 Nevermind, these tests work... I messed up my testing. by Eli Friedman · 16 years ago
  88. d574052 Partial fix for struct compatibility; there's still something messy by Eli Friedman · 16 years ago
  89. e39bfd0 by Steve Naroff · 16 years ago
  90. 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 16 years ago
  91. bab9696 Make typechecking for enum+int compatibility stricter. by Eli Friedman · 16 years ago
  92. 4c721d3 Fix type compatibility between constant and variable arrays. by Eli Friedman · 16 years ago
  93. 9532414 by Steve Naroff · 16 years ago
  94. 88cf226 Get rid of bogus warnings when the second argument in va_start is either an implicit cast expr or a paren expr. by Anders Carlsson · 16 years ago
  95. 3a15485 by Steve Naroff · 16 years ago
  96. b43eaa5 by Steve Naroff · 16 years ago
  97. a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 16 years ago
  98. 68f624e Basic codegen test for conditional with void*. by Eli Friedman · 16 years ago
  99. f76f5ed Add a couple of sema tests for qualifiers with conditionals containing void*. by Eli Friedman · 16 years ago
  100. 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 16 years ago