1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix build. NFC.

This commit is contained in:
Michael Liao 2020-04-21 14:58:52 -04:00
parent 312f303b26
commit 45866e6621
2 changed files with 2 additions and 2 deletions

View File

@ -18,5 +18,5 @@
type = Library
name = DebugInfoPDB
parent = DebugInfo
required_libraries = Object Support DebugInfoCodeView DebugInfoMSF
required_libraries = BinaryFormat Object Support DebugInfoCodeView DebugInfoMSF

View File

@ -104,7 +104,7 @@ loadPdbFile(StringRef PdbPath, std::unique_ptr<BumpPtrAllocator> &Allocator) {
if (auto EC = File->parseStreamData())
return std::move(EC);
return File;
return std::move(File);
}
Error NativeSession::createFromPdbPath(StringRef PdbPath,