mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Build fixes for pdb-diff test.
llvm-svn: 307556
This commit is contained in:
parent
932469035b
commit
8a830764af
@ -101,8 +101,8 @@ struct BinaryPathProvider {
|
||||
|
||||
SmallString<64> removeRoot(StringRef Path, bool IsRight) const {
|
||||
SmallString<64> Native(Path);
|
||||
SmallString<64> Root =
|
||||
IsRight ? opts::diff::RightRoot : opts::diff::LeftRoot;
|
||||
auto &RootOpt = IsRight ? opts::diff::RightRoot : opts::diff::LeftRoot;
|
||||
SmallString<64> Root(static_cast<std::string>(RootOpt));
|
||||
// pdb paths always use windows syntax, convert slashes to backslashes.
|
||||
sys::path::native(Root, sys::path::Style::windows);
|
||||
if (sys::path::has_stem(Root, sys::path::Style::windows))
|
||||
@ -449,7 +449,7 @@ diffOneModule(DiffPrinter &D,
|
||||
|
||||
BinaryPathProvider PathProvider(28);
|
||||
auto Iter = llvm::find_if(
|
||||
Other, [&Item, &PathProvider, ItemIsRight,
|
||||
Other, [&PathProvider, ItemIsRight,
|
||||
L](const std::pair<uint32_t, DbiModuleDescriptor> &Other) {
|
||||
const auto *Left = L;
|
||||
const auto *Right = &Other;
|
||||
|
Loading…
x
Reference in New Issue
Block a user