diff options
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp b/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp index 75e87afeb74..034879bf0f4 100644 --- a/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp +++ b/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp @@ -665,7 +665,8 @@ Error LLVMOutputStyle::dumpSectionHeaders() { P.printNumber("File Pointer to Linenumbers", Section.PointerToLinenumbers); P.printNumber("Number of Relocations", Section.NumberOfRelocations); P.printNumber("Number of Linenumbers", Section.NumberOfLinenumbers); - P.printNumber("Characteristics", Section.Characteristics); + P.printFlags("Characteristics", Section.Characteristics, + getImageSectionCharacteristicNames()); } return Error::success(); } |