Home
last modified time | relevance | path

Searched refs:args_to_pass (Results 1 – 2 of 2) sorted by relevance

/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dipa-split.c1046 VEC (tree, heap) *args_to_pass = NULL; in split_function()
1103 VEC_safe_push (tree, heap, args_to_pass, arg); in split_function()
1233 FOR_EACH_VEC_ELT (tree, args_to_pass, i, arg) in split_function()
1238 VEC_replace (tree, args_to_pass, i, arg); in split_function()
1240 call = gimple_build_call_vec (node->decl, args_to_pass); in split_function()
1242 VEC_free (tree, heap, args_to_pass); in split_function()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dipa-split.c1222 vec<tree> args_to_pass = vNULL; in split_function() local
1268 args_to_pass.safe_push (arg); in split_function()
1469 FOR_EACH_VEC_ELT (args_to_pass, i, arg) in split_function()
1474 args_to_pass[i] = arg; in split_function()
1476 call = gimple_build_call_vec (node->decl, args_to_pass); in split_function()
1479 args_to_pass.release (); in split_function()