forked from OSchip/llvm-project
[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. llvm-svn: 246868
This commit is contained in:
parent
add0f2aad5
commit
baec437f54
|
@ -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