summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaObjC/argument-checking.m
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-04-22 00:20:18 +0000
committerDouglas Gregor <dgregor@apple.com>2010-04-22 00:20:18 +0000
commit4f4946aaaa194da6d19250e924305cf0c3f61248 (patch)
treeb5c4216243b7a0e6da67976be3051715600b73f4 /clang/test/SemaObjC/argument-checking.m
parent3eeb741e6c5f72604a2f04d3548b0a95cab87fb7 (diff)
downloadbcm5719-llvm-4f4946aaaa194da6d19250e924305cf0c3f61248.tar.gz
bcm5719-llvm-4f4946aaaa194da6d19250e924305cf0c3f61248.zip
Whenever we complain about a failed initialization of a function or
method parameter, provide a note pointing at the parameter itself so the user does not have to manually look for the function/method being called and match up parameters to arguments. For example, we now get: t.c:4:5: warning: incompatible pointer types passing 'long *' to parameter of type 'int *' [-pedantic] f(long_ptr); ^~~~~~~~ t.c:1:13: note: passing argument to parameter 'x' here void f(int *x); ^ llvm-svn: 102038
Diffstat (limited to 'clang/test/SemaObjC/argument-checking.m')
-rw-r--r--clang/test/SemaObjC/argument-checking.m11
1 files changed, 6 insertions, 5 deletions
diff --git a/clang/test/SemaObjC/argument-checking.m b/clang/test/SemaObjC/argument-checking.m
index 19caf3271c6..9019a0fb24e 100644
--- a/clang/test/SemaObjC/argument-checking.m
+++ b/clang/test/SemaObjC/argument-checking.m
@@ -2,14 +2,15 @@
struct S { int a; };
-extern int charStarFunc(char *);
-extern int charFunc(char);
+extern int charStarFunc(char *); // expected-note{{passing argument to parameter here}}
+extern int charFunc(char); // expected-note{{passing argument to parameter here}}
@interface Test
+alloc;
--(int)charStarMeth:(char *)s;
--structMeth:(struct S)s;
--structMeth:(struct S)s :(struct S)s2;
+-(int)charStarMeth:(char *)s; // expected-note{{passing argument to parameter 's' here}}
+-structMeth:(struct S)s; // expected-note{{passing argument to parameter 's' here}}
+-structMeth:(struct S)s
+ :(struct S)s2; // expected-note{{passing argument to parameter 's2' here}}
@end
void test() {
OpenPOWER on IntegriCloud