Update dump message in IPA ICF.
authorMartin Liska <mliska@suse.cz>
Thu, 14 Nov 2019 08:35:05 +0000 (09:35 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Thu, 14 Nov 2019 08:35:05 +0000 (08:35 +0000)
2019-11-14  Martin Liska  <mliska@suse.cz>

* ipa-icf-gimple.c (func_checker::compare_gimple_call): Update
bail out reason.
(func_checker::compare_gimple_assign): Likewise.

From-SVN: r278206

gcc/ChangeLog
gcc/ipa-icf-gimple.c

index 4a23dfc2ac20ae265102c72dd7d22c1d5bd03252..e6a3cb2393b2b1a509832be84199f1135197dca4 100644 (file)
@@ -1,3 +1,9 @@
+2019-11-14  Martin Liska  <mliska@suse.cz>
+
+       * ipa-icf-gimple.c (func_checker::compare_gimple_call): Update
+       bail out reason.
+       (func_checker::compare_gimple_assign): Likewise.
+
 2019-11-14  Jakub Jelinek  <jakub@redhat.com>
 
        * config/i386/i386-options.c (ix86_omp_device_kind_arch_isa): Don't
index 7e4ffc852a8a13a01fd13baa9a6428330381a7bd..edb8fd66e08abdf8b903522de8373556a5db225d 100644 (file)
@@ -579,7 +579,7 @@ func_checker::compare_gimple_call (gcall *s1, gcall *s2)
       t2 = gimple_call_arg (s2, i);
 
       if (!compare_operand (t1, t2))
-       return return_false_with_msg ("memory operands are different");
+       return return_false_with_msg ("GIMPLE call operands are different");
     }
 
   /* Return value checking.  */
@@ -618,7 +618,8 @@ func_checker::compare_gimple_assign (gimple *s1, gimple *s2)
       arg2 = gimple_op (s2, i);
 
       if (!compare_operand (arg1, arg2))
-       return return_false_with_msg ("memory operands are different");
+       return return_false_with_msg ("GIMPLE assignment operands "
+                                     "are different");
     }