diff options
author | Kevin Enderby <enderby@apple.com> | 2015-03-13 17:56:32 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2015-03-13 17:56:32 +0000 |
commit | f064075e54a0b75def06b59cc86e35dce39bebd9 (patch) | |
tree | da66c6ceec1ca0f8e00c1e33c7d0a30f7fb18e35 /llvm/tools/llvm-objdump/llvm-objdump.h | |
parent | 7a9cca9e7d3d4a0e6875525c1d6f8704f63e56c5 (diff) | |
download | bcm5719-llvm-f064075e54a0b75def06b59cc86e35dce39bebd9.tar.gz bcm5719-llvm-f064075e54a0b75def06b59cc86e35dce39bebd9.zip |
Add the option, -non-verbose to llvm-objdump used with -macho to print things
using numeric values and not their symbolic constant names.
The routines that print Mach-O stuff already had a verbose parameter and this
change is just changing the passing true to passing !NonVerbose. With just a
couple of fixes and a bunch of test case updates.
llvm-svn: 232182
Diffstat (limited to 'llvm/tools/llvm-objdump/llvm-objdump.h')
-rw-r--r-- | llvm/tools/llvm-objdump/llvm-objdump.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.h b/llvm/tools/llvm-objdump/llvm-objdump.h index 845b7ea26bb..434a10e677d 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.h +++ b/llvm/tools/llvm-objdump/llvm-objdump.h @@ -41,6 +41,7 @@ extern cl::opt<bool> IndirectSymbols; extern cl::opt<bool> DataInCode; extern cl::opt<bool> LinkOptHints; extern cl::opt<bool> InfoPlist; +extern cl::opt<bool> NonVerbose; extern cl::opt<bool> Relocations; extern cl::opt<bool> SectionHeaders; extern cl::opt<bool> SectionContents; |