gcc/ChangeLog:
2019-03-25 Andreas Krebbel <krebbel@linux.ibm.com>
* config/s390/s390-c.c (s390_fn_types_compatible): Print the
expected and found types with -mdebug during builtin matching.
From-SVN: r269908
+2019-03-25 Andreas Krebbel <krebbel@linux.ibm.com>
+
+ * config/s390/s390-c.c (s390_fn_types_compatible): Print the
+ expected and found types with -mdebug during builtin matching.
+
2019-03-25 Richard Biener <rguenther@suse.de>
PR middle-end/89790
mismatch:
if (TARGET_DEBUG_ARG)
- fprintf (stderr, " mismatch in operand: %d\n", i + 1);
+ {
+ fprintf (stderr, " mismatch in operand: %d incoming: ", i + 1);
+ print_generic_expr (stderr, in_type, TDF_VOPS|TDF_MEMSYMS);
+ fprintf (stderr, " expected: ");
+ print_generic_expr (stderr, b_arg_type, TDF_VOPS|TDF_MEMSYMS);
+ fprintf (stderr, "\n");
+ }
return INT_MAX;
}