Every target, except Hexagon, iterates over bundles and prints the
contents like every other instruction.
A part of instruction printing is done in the for-loop in the
AsmPrinter, e.g. handling debug or kill instructions, which had to be
reimplemented in every target to support bundles.
With this patch, iterating over instruction bundles is taken out of the
targets and moved into the generic AsmPrinter.
For Hexagon, the bundles are still printed when encountering the bundle
instruction. Further instructions inside bundles are ignored.
Mips has a test change for some debug data. I hope this is just some
moved metadata and doesn't change behavior.
Much nicer! :)