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