aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/function.c
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-02 15:37:10 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-02 15:37:10 +0000
commit74734d576b1dd082f623abb76ab204d69970dadb (patch)
tree2e49c66e4ce5bf46cfe9de9d3388257533d1e7d0 /test/Sema/function.c
parent6cc73de6ebb3eb00af7dd5149f6778318f1fb76f (diff)
When calling a function without a prototype for which we have a
definition, warn if there are too many/too few function call arguments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/function.c')
-rw-r--r--test/Sema/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/function.c b/test/Sema/function.c
index aec76a26eb..e604d0e1ea 100644
--- a/test/Sema/function.c
+++ b/test/Sema/function.c
@@ -27,7 +27,7 @@ int t9(int a, ); // expected-error {{expected parameter declarator}}
// PR2042
void t10(){}
-void t11(){t10(1);}
+void t11(){t10(1);} // expected-warning{{too many arguments}}
// PR3208
void t12(int) {} // expected-error{{parameter name omitted}}