diff options
author | Ian Lance Taylor <iant@golang.org> | 2021-09-13 10:37:49 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2021-09-13 10:37:49 -0700 |
commit | e252b51ccde010cbd2a146485d8045103cd99533 (patch) | |
tree | e060f101cdc32bf5e520de8e5275db9d4236b74c /gcc/tree-call-cdce.c | |
parent | f10c7c4596dda99d2ee872c995ae4aeda65adbdf (diff) | |
parent | 104c05c5284b7822d770ee51a7d91946c7e56d50 (diff) | |
download | gcc-e252b51ccde010cbd2a146485d8045103cd99533.zip gcc-e252b51ccde010cbd2a146485d8045103cd99533.tar.gz gcc-e252b51ccde010cbd2a146485d8045103cd99533.tar.bz2 |
Merge from trunk revision 104c05c5284b7822d770ee51a7d91946c7e56d50.
Diffstat (limited to 'gcc/tree-call-cdce.c')
-rw-r--r-- | gcc/tree-call-cdce.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/tree-call-cdce.c b/gcc/tree-call-cdce.c index 6668397..d9b9b4c 100644 --- a/gcc/tree-call-cdce.c +++ b/gcc/tree-call-cdce.c @@ -761,7 +761,7 @@ get_no_error_domain (enum built_in_function fnc) condition are separated by NULL tree in the vector. */ static void -gen_shrink_wrap_conditions (gcall *bi_call, vec<gimple *> conds, +gen_shrink_wrap_conditions (gcall *bi_call, const vec<gimple *> &conds, unsigned int *nconds) { gcall *call; @@ -797,7 +797,8 @@ gen_shrink_wrap_conditions (gcall *bi_call, vec<gimple *> conds, when it is non-null, it is called while all of the CONDS are true. */ static void -shrink_wrap_one_built_in_call_with_conds (gcall *bi_call, vec <gimple *> conds, +shrink_wrap_one_built_in_call_with_conds (gcall *bi_call, + const vec <gimple *> &conds, unsigned int nconds, gcall *bi_newcall = NULL) { @@ -1132,7 +1133,7 @@ use_internal_fn (gcall *call) wrapping transformation. */ static void -shrink_wrap_conditional_dead_built_in_calls (vec<gcall *> calls) +shrink_wrap_conditional_dead_built_in_calls (const vec<gcall *> &calls) { unsigned i = 0; |