summaryrefslogtreecommitdiff
path: root/gcc/c-typeck.c
diff options
context:
space:
mode:
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2011-05-23 14:20:49 +0000
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2011-05-23 14:20:49 +0000
commit774e9d58f907675e2bbf86307f3311f05665f134 (patch)
treeb9bfe00973240a820a89bed01fbb2ba41bc453ca /gcc/c-typeck.c
parente54d36c4826a4f567945ac4a962618bb9286d06b (diff)
downloadgcc-774e9d58f907675e2bbf86307f3311f05665f134.tar.gz
don't use TYPE_ARG_TYPES when calling c-family:check_function_arguments
gcc/ * c-typeck.c (build_function_call_vec): Tweak call to check_function_arguments. gcc/c-family/ * c-common.h (check_function_arguments): Tweak prototype of check_function_arguments. * c-common.c (check_function_arguments): Likewise. Adjust calls to check_function_nonnull, check_function_format, and check_function_sentinel. (check_function_sentinel): Take a FUNCTION_TYPE rather than separate attributes and typelist arguments. Use FOREACH_FUNCTION_ARGS to iterate over argument types. gcc/cp/ * call.c (build_over_call): Tweak call to check_function_arguments. * typeck.c (cp_build_function_call_vec): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174067 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-typeck.c')
-rw-r--r--gcc/c-typeck.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c
index 6016db2783f..e609611ab58 100644
--- a/gcc/c-typeck.c
+++ b/gcc/c-typeck.c
@@ -2808,8 +2808,7 @@ build_function_call_vec (location_t loc, tree function, VEC(tree,gc) *params,
return error_mark_node;
/* Check that the arguments to the function are valid. */
- check_function_arguments (TYPE_ATTRIBUTES (fntype), nargs, argarray,
- TYPE_ARG_TYPES (fntype));
+ check_function_arguments (fntype, nargs, argarray);
if (name != NULL_TREE
&& !strncmp (IDENTIFIER_POINTER (name), "__builtin_", 10))