From: Jan Hubicka Date: Mon, 2 May 2016 17:34:32 +0000 (+0200) Subject: * cif-code.def (CIF_THUNK): Add. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fd5fac4c8c73d822f5af8a36e02126530aa6f221;p=gcc.git * cif-code.def (CIF_THUNK): Add. From-SVN: r235770 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9464a950556..bb10f5e08d6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-05-02 Jan Hubicka + + * cif-code.def (CIF_THUNK): Add. + 2016-05-02 Jan Hubicka * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions diff --git a/gcc/cif-code.def b/gcc/cif-code.def index 050388b5a63..97a285857f4 100644 --- a/gcc/cif-code.def +++ b/gcc/cif-code.def @@ -91,6 +91,10 @@ DEFCIFCODE(NOT_DECLARED_INLINED, CIF_FINAL_NORMAL, DEFCIFCODE(MISMATCHED_ARGUMENTS, CIF_FINAL_ERROR, N_("mismatched arguments")) +/* Caller and callee disagree on the arguments. */ +DEFCIFCODE(THUNK, CIF_FINAL_ERROR, + N_("thunk call")) + /* Call was originally indirect. */ DEFCIFCODE(ORIGINALLY_INDIRECT_CALL, CIF_FINAL_NORMAL, N_("originally indirect function call not considered for inlining"))