forked from Imagelibrary/binutils-gdb
While working on disassembler styling for MIPS, I noticed that undefined instructions are printed by the disassembler as raw number with no assembler directive prefix (e.g. without .word or .short). I think adding something like .word, or .short, helps to make it clearer the size of the value that is being displayed, and is inline with what many of the other libopcode disassemblers do. In this commit I've added the .word and .short directives, and updated all the tests that I spotted that failed as a result.
18 lines
672 B
Makefile
18 lines
672 B
Makefile
#PROG: objcopy
|
|
#objdump: -M no-aliases -m mips:3000 -d --prefix-addresses --show-raw-insn
|
|
#name: MIPS1 branch canonical alias disassembly
|
|
#source: mips-branch-alias.s
|
|
|
|
.*: +file format .*mips.*
|
|
|
|
Disassembly of section \.text:
|
|
[0-9a-f]+ <[^>]*> 10000000 beq zero,zero,[0-9a-f]+ <[^>]*>
|
|
[0-9a-f]+ <[^>]*> 04010000 bgez zero,[0-9a-f]+ <[^>]*>
|
|
[0-9a-f]+ <[^>]*> 04110000 bgezal zero,[0-9a-f]+ <[^>]*>
|
|
[0-9a-f]+ <[^>]*> 04100000 bltzal zero,[0-9a-f]+ <[^>]*>
|
|
[0-9a-f]+ <[^>]*> 10200000 beq at,zero,[0-9a-f]+ <[^>]*>
|
|
[0-9a-f]+ <[^>]*> 14200000 bne at,zero,[0-9a-f]+ <[^>]*>
|
|
[0-9a-f]+ <[^>]*> 50200000 .word 0x50200000
|
|
[0-9a-f]+ <[^>]*> 54200000 .word 0x54200000
|
|
\.\.\.
|