diff options
Diffstat (limited to 'gcc/ipa-icf-gimple.cc')
-rw-r--r-- | gcc/ipa-icf-gimple.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ipa-icf-gimple.cc b/gcc/ipa-icf-gimple.cc index 51ca8a3..ac16986 100644 --- a/gcc/ipa-icf-gimple.cc +++ b/gcc/ipa-icf-gimple.cc @@ -708,7 +708,8 @@ func_checker::compare_gimple_call (gcall *s1, gcall *s2) || gimple_call_from_thunk_p (s1) != gimple_call_from_thunk_p (s2) || gimple_call_from_new_or_delete (s1) != gimple_call_from_new_or_delete (s2) || gimple_call_va_arg_pack_p (s1) != gimple_call_va_arg_pack_p (s2) - || gimple_call_alloca_for_var_p (s1) != gimple_call_alloca_for_var_p (s2)) + || gimple_call_alloca_for_var_p (s1) != gimple_call_alloca_for_var_p (s2) + || gimple_call_must_tail_p (s1) != gimple_call_must_tail_p (s2)) return false; unsigned check_arg_types_from = 0; |