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.
14 lines
440 B
Makefile
14 lines
440 B
Makefile
#PROG: objcopy
|
|
#objdump: -d --prefix-addresses --show-raw-insn -m mips:3000 -M xpa,cp0-names=mips32
|
|
#name: MIPS XPA and Virtualization ASE instruction disassembly 2
|
|
#source: mips-xpa-virt.s
|
|
|
|
.*: +file format .*mips.*
|
|
|
|
Disassembly of section \.text:
|
|
[0-9a-f]+ <[^>]*> 40020800 mfc0 v0,c0_random
|
|
[0-9a-f]+ <[^>]*> 40420800 mfhc0 v0,c0_random
|
|
[0-9a-f]+ <[^>]*> 40620800 .word 0x40620800
|
|
[0-9a-f]+ <[^>]*> 40620c00 .word 0x40620c00
|
|
\.\.\.
|