Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-09-06 | PR10867: Work around a bug in lit. Multiple RUN: lines are joined with &&, so: | Richard Smith | 1 | -1/+1 | |
RUN: foo RUN: bar || true is equivalent to: RUN: foo && bar || true which is equivalent to: RUN: (foo && bar) || true This resulted in several of the fixit tests not really testing anything. llvm-svn: 139132 | |||||
2011-07-28 | Another test case for the &/* mismatch fixit. | Anna Zaks | 1 | -1/+15 | |
llvm-svn: 136380 | |||||
2011-07-21 | Addressing code review comments for commit 135509 - Add FixItHints in case a ↵ | Anna Zaks | 1 | -2/+19 | |
C++ function call is missing * or & operators on llvm-svn: 135643 | |||||
2011-07-19 | Add FixItHints in case a C++ function call is missing * or & operators on ↵ | Anna Zaks | 1 | -0/+87 | |
one/several of it's parameters (addresses http://llvm.org/PR5941). llvm-svn: 135509 |