mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 18:06:49 +00:00
[llvm-readobj] MachO: dump the correct field.
This was found while converting a test from macho-dump to llvm-readobj and will once I commit the converted test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246868 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e0517c5848
commit
cdd5f6d41a
@ -767,7 +767,7 @@ void MachODumper::printMachOSegment() {
|
||||
W.printHex("vmaddr", MOSegment.vmaddr);
|
||||
W.printHex("vmsize", MOSegment.vmsize);
|
||||
W.printNumber("fileoff", MOSegment.fileoff);
|
||||
W.printNumber("filesize", MOSegment.fileoff);
|
||||
W.printNumber("filesize", MOSegment.filesize);
|
||||
W.printString("maxprot", getMask(MOSegment.maxprot));
|
||||
W.printString("initprot", getMask(MOSegment.initprot));
|
||||
W.printNumber("nsects", MOSegment.nsects);
|
||||
|
Loading…
Reference in New Issue
Block a user