diff options
Diffstat (limited to 'gcc/gimple-low.c')
-rw-r--r-- | gcc/gimple-low.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c index 01aeb49..3afa0b2 100644 --- a/gcc/gimple-low.c +++ b/gcc/gimple-low.c @@ -219,6 +219,10 @@ gimple_check_call_args (gimple stmt, tree fndecl) tree parms, p; unsigned int i, nargs; + /* Calls to internal functions always match their signature. */ + if (gimple_call_internal_p (stmt)) + return true; + nargs = gimple_call_num_args (stmt); /* Get argument types for verification. */ |