Skip to content

Commit

Permalink
Darwin, Arm64 : Cast print value per format description.
Browse files Browse the repository at this point in the history
  • Loading branch information
Iain Sandoe authored and iains committed Aug 30, 2020
1 parent 35624a1 commit 2efeb99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcc/config/aarch64/falkor-tag-collision-avoidance.c
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ dump_insn_list (const rtx &t, const insn_info_list_t &insn_info,
void *unused ATTRIBUTE_UNUSED)
{
gcc_assert (dump_file);
fprintf (dump_file, "Tag 0x%lx ::\n", INTVAL (t));
fprintf (dump_file, "Tag 0x%lx ::\n", (long unsigned int)INTVAL (t));

for (unsigned i = 0; i < insn_info.length (); i++)
dump_insn_slim (dump_file, insn_info[i]->insn);
Expand Down

0 comments on commit 2efeb99

Please sign in to comment.