diff options
author | Zachary Turner <zturner@google.com> | 2018-03-30 17:16:50 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-03-30 17:16:50 +0000 |
commit | d5cf5cf637918664c6de75c0685786acb2a2b92c (patch) | |
tree | da6a5622ec4166360922f051c7b09b7ec892d1be /llvm/tools/llvm-pdbutil/llvm-pdbutil.h | |
parent | 0945ad6643e240bb9fb5c89b3abdfa0f9b9bfac2 (diff) | |
download | bcm5719-llvm-d5cf5cf637918664c6de75c0685786acb2a2b92c.tar.gz bcm5719-llvm-d5cf5cf637918664c6de75c0685786acb2a2b92c.zip |
[llvm-pdbutil] Dig deeper into the PDB and DBI streams when explaining.
This will show more detail when using `llvm-pdbutil explain` on an
offset in the DBI or PDB streams. Specifically, it will dig into
individual header fields and substreams to give a more precise
description of what the byte represents.
llvm-svn: 328878
Diffstat (limited to 'llvm/tools/llvm-pdbutil/llvm-pdbutil.h')
-rw-r--r-- | llvm/tools/llvm-pdbutil/llvm-pdbutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-pdbutil/llvm-pdbutil.h b/llvm/tools/llvm-pdbutil/llvm-pdbutil.h index 6765b93146f..e7ad269444e 100644 --- a/llvm/tools/llvm-pdbutil/llvm-pdbutil.h +++ b/llvm/tools/llvm-pdbutil/llvm-pdbutil.h @@ -191,7 +191,7 @@ extern llvm::cl::opt<bool> DumpModuleSyms; namespace explain { extern llvm::cl::list<std::string> InputFilename; -extern llvm::cl::opt<uint64_t> Offset; +extern llvm::cl::list<uint64_t> Offsets; } // namespace explain } |