1. 7ffe6b2 Test case for transfer function logic of const casts. by Ted Kremenek · 16 years ago
  2. 7abe689 Fixed logic error in BasicConstraintManager pointed out by Zhongxing Xu. by Ted Kremenek · 16 years ago
  3. c185e1a Fix rdar://6222856: the receiver of a message expr is an by Chris Lattner · 16 years ago
  4. 12c3a2a Added test case for PR 2600: proper use of NSError** by Ted Kremenek · 16 years ago
  5. e1cecba Finish pushing blocks attribute through the clang attribute machinery. by Steve Naroff · 16 years ago
  6. d48ac6b Added CFNumberCreate test case to illustrate a 32-bit/64-bit arch issue. by Ted Kremenek · 16 years ago
  7. 6dd8849 Add path-sensitivity test case. by Ted Kremenek · 16 years ago
  8. 0e31ed9 Another attempt to make test/Makefile return correct error code. by Daniel Dunbar · 16 years ago
  9. 2f3c443 Fix http://llvm.org/bugs/show_bug.cgi?id=2760. by Steve Naroff · 16 years ago
  10. 91c6174 Ignore XFAIL tests when checking for make failure in test/ by Daniel Dunbar · 16 years ago
  11. 34c02bf Fix copy-paste error in test case. by Ted Kremenek · 16 years ago
  12. 7603ed8 Minor pass-sensitivity improvement: by Ted Kremenek · 16 years ago
  13. a095a75 Remove support for BlockExprExpr. For example... by Steve Naroff · 16 years ago
  14. 503996b Sema::ActOnBlockReturnStmt(): Need to perform the UsualUnaryConversions on the return type. by Steve Naroff · 16 years ago
  15. 1815b3b Give string literals const element typesin C++, and cope with the deprecated C++ conversion from a string literal to a pointer-to-non-const-character by Douglas Gregor · 16 years ago
  16. a7b5fb9 Iterate on sema for :? in Objective-C: by Daniel Dunbar · 16 years ago
  17. c362d38 Do implicit conversion to bool for the condition in a do-while statement. by Argiris Kirtzidis · 16 years ago
  18. 8d36abb Fix do-while scoping in C++. by Argiris Kirtzidis · 16 years ago
  19. 7776e10 Fix two bugs exposed by array passing assert: by Daniel Dunbar · 16 years ago
  20. c4e1e45 In the 'condition.cpp' test case, make sure that condition declarations are local to the statement. by Argiris Kirtzidis · 16 years ago
  21. 32c5304 Add XFAIL test case for: by Daniel Dunbar · 16 years ago
  22. 3eac769 More semantic analysis for blocks... by Steve Naroff · 16 years ago
  23. 4d1b93d Sema::ActOnIdentifierExpr(): Lookup block arguments. by Steve Naroff · 16 years ago
  24. bf615b0 Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, which represents a 'condition' declaration, e.g: "if (int x=0) {...}". by Argiris Kirtzidis · 16 years ago
  25. 810c0f7 Implement Sema support for the 'condition' part of C++ selection-statements and iteration-statements (if/switch/while/for). by Argiris Kirtzidis · 16 years ago
  26. d231221 Fix test case. by Argiris Kirtzidis · 16 years ago
  27. 873f278 Implement parser support for the 'condition' part of C++ selection-statements and iteration-statements (if/switch/while/for). by Argiris Kirtzidis · 16 years ago
  28. 566a650 Fix a number of issues w.r.t. emission of global for functions and by Daniel Dunbar · 16 years ago
  29. 6fe1f11 Add missing RUN line by Daniel Dunbar · 16 years ago
  30. 19b9a0e skip test if llvm-gcc is requires but not found on the path. by Nuno Lopes · 16 years ago
  31. d6163f3 More type checking for blocks. Still incomplete (will hopefully finish up this weekend). by Steve Naroff · 16 years ago
  32. c2a384d Support "typeof unary-expression" (GNU C++ extension). by Argiris Kirtzidis · 16 years ago
  33. 1ad8ffb Line endings: CRLF -> LF by Argiris Kirtzidis · 16 years ago
  34. 34445e6 Test case for previous commit (Workaround gcc bug causing crash on our by Daniel Dunbar · 16 years ago
  35. 896d1e2 Set sext/zext on function result. - <rdar://problem/6156739> by Daniel Dunbar · 16 years ago
  36. 1be9f99 Fix unintended use of doxygen comment strings. by Daniel Dunbar · 16 years ago
  37. 7e72128 Added test case for the dead stores checker that was originally an FP reported in PR 2763. by Ted Kremenek · 16 years ago
  38. 1d706e9 Prevent invalid warnings about incomplete implementations for methods by Daniel Dunbar · 16 years ago
  39. d2c1df6 fix running tests with valgrind (there were a lot of bogus failures and warnings) by Nuno Lopes · 16 years ago
  40. b9a21d8 Add some Objective-C code generation tests. by Daniel Dunbar · 16 years ago
  41. ef0d4c7 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago
  42. 0b4dc96 Update TestRunner to not report failure for XFAIL tests by Daniel Dunbar · 16 years ago
  43. b648e8c Set register storage class correctly for function parameters. - PR2730 by Daniel Dunbar · 16 years ago
  44. 88bec0f Following gcc's behavior, only enable trigraphs if '-trigraphs' or '-ansi' is by Ted Kremenek · 16 years ago
  45. 0074084 Add two test cases for builtins (mostly related to object size builtins). by Daniel Dunbar · 16 years ago
  46. cc785c8 Improve type-checking of ?: for Objective-C types. by Daniel Dunbar · 16 years ago
  47. 60e8b16 Restore Objective-C dot-syntax access of methods. by Daniel Dunbar · 16 years ago
  48. 892bc0e - Implement __block. by Steve Naroff · 16 years ago
  49. bf39547 Pull code from last commit. will put back soon. by Steve Naroff · 16 years ago
  50. 6f5d1a1 Implement block pseudo-storage class modifiers (__block, __byref). by Steve Naroff · 16 years ago
  51. 0fe15dc add the other test case for completeness and to avoid regressions in the future by Nuno Lopes · 16 years ago
  52. 266df14 Fix for PR2747: allow pointer->int casts with a null base; these are by Eli Friedman · 16 years ago
  53. d039374 Fix for PR2750; don't check for an 'e' in the trash after the token. by Eli Friedman · 16 years ago
  54. 283b362 An extremely hacky version of transparent_union support; it isn't by Eli Friedman · 16 years ago
  55. 583c31e Make sure to take the unqualified versions of the canonical types for by Eli Friedman · 16 years ago
  56. 8f9656d readd test as it passes correctly. nice, but weird by Nuno Lopes · 16 years ago
  57. d662caa Backing out r55607 due to logic errors and test regression. by Eli Friedman · 16 years ago
  58. 7af441b Tidy up sema processing of attribute "nonull": by Ted Kremenek · 16 years ago
  59. 1dc2676 fix one more this-is-not-a-constant error. test included by Nuno Lopes · 16 years ago
  60. 987c522 make CheckArithmeticConstantExpression() aware of &foo and pointers by Nuno Lopes · 16 years ago
  61. b52b832 Temporarily disable some tests which due to dot-syntax access of methods. by Daniel Dunbar · 16 years ago
  62. c53625b Allow 'make TESTDIRS=Sema' in test/ directory for only running a by Daniel Dunbar · 16 years ago
  63. fd5b19d Add parser/action support for block literal expressions. by Steve Naroff · 16 years ago
  64. 461d08c Fix isIntegerConstantExpr eval of __builtin_offsetof to return result by Daniel Dunbar · 16 years ago
  65. 7cfb85b Fix double-free error with sizeof applied to VLA types. - PR2727. by Daniel Dunbar · 16 years ago
  66. 7aa5475 First wave of changes to support "blocks" (an extension to C). by Steve Naroff · 16 years ago
  67. 43f2b70 Update test case (we were missing a warning here) by Daniel Dunbar · 16 years ago
  68. db3b449 Add ObjCPropertyDecl::isReadOnly. by Daniel Dunbar · 16 years ago
  69. cd23bb2 In incompatible pointer-typed ?: expressions, add implicit conversion by Daniel Dunbar · 16 years ago
  70. 769e730 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 16 years ago
  71. 1fad3c6 Fix for PR2720; be a little bit more permissive in initializers for by Eli Friedman · 16 years ago
  72. 398a815 Add test case for function-pointer-cast-of-global as constant expression. by Daniel Dunbar · 16 years ago
  73. 8d0bcb0 Objective-C foreach selector elements must be lvalues. by Anders Carlsson · 16 years ago
  74. e0f00b3 Fix silly bug in objc_gc attribute parsing and add test case by Anders Carlsson · 16 years ago
  75. d7601d3 Add carbon.cpp and cocoa.mm tests by Anders Carlsson · 16 years ago
  76. ed6c214 treat bool literals as constatnt expressions. by Anders Carlsson · 16 years ago
  77. af1864b Handle Objective-C++ tests. by Anders Carlsson · 16 years ago
  78. 28075fa Reserved C++ words are valid selectors in Objective-C++ by Anders Carlsson · 16 years ago
  79. 750eb97 Add CodeGen support for CXXZeroInitValueExpr. by Argiris Kirtzidis · 16 years ago
  80. 868dcdb Add a null pointer test in the type-convert-construct.cpp tests. by Argiris Kirtzidis · 16 years ago
  81. b576933 Fix a FIXME by not creating an invalid AST on erroneous input. Also by Chris Lattner · 16 years ago
  82. 1d00c2c Move the rest of the Sema C++ tests into the SemaCXX test directory. by Argiris Kirtzidis · 16 years ago
  83. 7a1e741 Add support for C++'s "type-specifier ( expression-list )" expression: by Argiris Kirtzidis · 16 years ago
  84. cdfcc0b make test fails if llvm is checked out to llvm-svn of if there is a dash somewhere else in the path. fix that. by Nico Weber · 16 years ago
  85. ea7140a Initial sema support for C++ static initializers. by Anders Carlsson · 16 years ago
  86. 34c8508 add a simple check to warn people who type "=+" when they probably meant "+=". by Chris Lattner · 16 years ago
  87. 0541b43 Use full path to count script, and don't treat files with missing RUN by Daniel Dunbar · 16 years ago
  88. bac9635 Missed a test case writing a .ll file. by Daniel Dunbar · 16 years ago
  89. 84cccd0 Reorder the PATH used during testing so $(ToolDir) and the LLVM by Daniel Dunbar · 16 years ago
  90. 8e019fd Update a number of CodeGen tests to not create .ll files in the test by Daniel Dunbar · 16 years ago
  91. 8ff06f3 Update test/Makefile to allow testing when using a separate obj by Daniel Dunbar · 16 years ago
  92. 8754e5b Fix a regression from my fix to PR2631. Fixes PR2692. by Eli Friedman · 16 years ago
  93. a1b6d80 Fix a minor crash-on-invalid. by Eli Friedman · 16 years ago
  94. 5ad49de Fix subtle bug introduced in r54852. by Daniel Dunbar · 16 years ago
  95. 0067dad Fix test failure on Linux. by Eli Friedman · 16 years ago
  96. 2e55ea8 Fix some spam from make I accidentally introduced. by Eli Friedman · 16 years ago
  97. 5d0dc40 Get rid of the bogus -depth +0 argument; I really have no clue what the by Eli Friedman · 16 years ago
  98. 027cd0b Fix crasher in RewriteObjC::RewriteObjCSynchronizedStmt(). Can't depend on the source locations of the sync expression (since it may have been rewritten. by Steve Naroff · 16 years ago
  99. a5ca2cf add testcase we already handle. by Chris Lattner · 16 years ago
  100. 823f519 proper grammar n stuph by Chris Lattner · 16 years ago