r221825 - Now really fix the typo in the test
Anton Korobeynikov
asl at math.spbu.ru
Wed Nov 12 14:58:08 PST 2014
Author: asl
Date: Wed Nov 12 16:58:08 2014
New Revision: 221825
URL: http://llvm.org/viewvc/llvm-project?rev=221825&view=rev
Log:
Now really fix the typo in the test
Modified:
cfe/trunk/test/FixIt/format-darwin.m
Modified: cfe/trunk/test/FixIt/format-darwin.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/format-darwin.m?rev=221825&r1=221824&r2=221825&view=diff
==============================================================================
--- cfe/trunk/test/FixIt/format-darwin.m (original)
+++ cfe/trunk/test/FixIt/format-darwin.m Wed Nov 12 16:58:08 2014
@@ -83,12 +83,12 @@ void testParens(Foo *obj, struct Bar *re
printf("%s", [obj getInteger]); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}}
printf("%s", obj.value); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}}
printf("%s", record->value); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}}
- printf("%s", (i ? i : i)); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
+ printf("%s", (i ? i : i)); // expected-warning{{format specifies type 'char *' but the argument has type 'long'}}
printf("%s", *arr); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}}
// CHECK-NOT: fix-it:{{.*}}:")"
- printf("%s", i ? i : i); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
+ printf("%s", i ? i : i); // expected-warning{{format specifies type 'char *' but the argument has type 'long'}}
// CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:11-[[@LINE-2]]:13}:"%ld"
// CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:16-[[@LINE-3]]:16}:"(long)("
More information about the cfe-commits
mailing list