make -show-inst be formatted a bit nicer. Before:
authorChris Lattner <sabre@nondot.org>
Tue, 9 Feb 2010 00:54:51 +0000 (00:54 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 9 Feb 2010 00:54:51 +0000 (00:54 +0000)
commit30d9a644d5b09bcf95b8b05ec559c778566265c3
tree59b65b17dd8e44fcb15865f5afa62dd71f56fc7c
parent0b23dc0cc8fb2967dc08574910536cc074863bcb
make -show-inst be formatted a bit nicer.  Before:

movl $3735928559, a          ## inst: <MCInst 1273 <MCOperand Reg:0> <MCOperand Imm:1> <MCOperand Reg:0> <MCOperand Expr:(a)> <MCOperand Reg:0> <MCOperand Expr:(3735928559)>>

after:

movl $3735928559, a          ## <MCInst #1273
                                        ##   <MCOperand Reg:0>
                                        ##   <MCOperand Imm:1>
                                        ##   <MCOperand Reg:0>
                                        ##   <MCOperand Expr:(a)>
                                        ##   <MCOperand Reg:0>
                                        ##   <MCOperand Expr:(3735928559)>>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95637 91177308-0d34-0410-b5e6-96231b3b80d8
lib/MC/MCAsmStreamer.cpp