Methods became templated in D83871.
D83935 tries to move out the common code and I had to introduce
2 more virtual methods: printRelReloc and printRelReloc to call
the templated printRelRelaReloc from the base class,
where the common code lives.
This patch shows that we can call printRelRelaReloc directly from the
base class after making it virtual and detemplating it.
The benefit is that the code becomes shorter. But instead of having just
Elf_Rel/Elf_Rela argument, we will have two: const Elf_Rel &R, Optional<int64_t> Addend
Should we do it?
I think /*Addend=*/None is the preferred style. Same below.