diff options
author | Colin LeMahieu <colinl@codeaurora.org> | 2015-07-23 20:58:49 +0000 |
---|---|---|
committer | Colin LeMahieu <colinl@codeaurora.org> | 2015-07-23 20:58:49 +0000 |
commit | f34933e425a9b04e837766b47719892d4352f4be (patch) | |
tree | a67c1b8ef01ec0d1935c330e8041fe169361821f /llvm/tools/llvm-objdump/llvm-objdump.h | |
parent | 878c144f8a32336daa2c0124017ec707924cfcc0 (diff) | |
download | bcm5719-llvm-f34933e425a9b04e837766b47719892d4352f4be.tar.gz bcm5719-llvm-f34933e425a9b04e837766b47719892d4352f4be.zip |
[llvm-objdump] Add -D and --disassemble-all flags that attempt disassembly on all sections instead of just text sections.
llvm-svn: 243041
Diffstat (limited to 'llvm/tools/llvm-objdump/llvm-objdump.h')
-rw-r--r-- | llvm/tools/llvm-objdump/llvm-objdump.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.h b/llvm/tools/llvm-objdump/llvm-objdump.h index eb10d8344f7..0fa2d29f547 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.h +++ b/llvm/tools/llvm-objdump/llvm-objdump.h @@ -26,7 +26,8 @@ extern cl::opt<std::string> ArchName; extern cl::opt<std::string> MCPU; extern cl::list<std::string> MAttrs; extern cl::list<std::string> DumpSections; -extern cl::opt<bool> Disassemble; +extern cl::opt<bool> Disassemble;
+extern cl::opt<bool> DisassembleAll; extern cl::opt<bool> NoShowRawInsn; extern cl::opt<bool> PrivateHeaders; extern cl::opt<bool> ExportsTrie; |