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