forked from OSchip/llvm-project
Speculative build fix for codeview type dumper API change
llvm-svn: 271344
This commit is contained in:
parent
892fa7dbcb
commit
cbb1d06ff2
|
@ -28,7 +28,7 @@ extern "C" void LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
|
|||
StringRef((const char *)data, size), "", false);
|
||||
|
||||
ScopedPrinter P(nulls());
|
||||
codeview::CVTypeDumper TD(P, false);
|
||||
codeview::CVTypeDumper TD(&P, false);
|
||||
|
||||
std::unique_ptr<pdb::PDBFile> File(new pdb::PDBFile(std::move(Buff)));
|
||||
if (auto E = File->parseFileHeaders()) {
|
||||
|
|
Loading…
Reference in New Issue