1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Always use / as the path separator.

It is not clear if it is worth the complexity to use \ on
windows. This should fix the bots.

llvm-svn: 288616
This commit is contained in:
Rafael Espindola 2016-12-04 07:27:02 +00:00
parent d9678b418b
commit 1343951a4e

View File

@ -362,7 +362,7 @@ static void doDisplayTable(StringRef Name, const object::Archive::Child &C) {
if (C.getParent()->isThin()) { if (C.getParent()->isThin()) {
outs() << sys::path::parent_path(ArchiveName); outs() << sys::path::parent_path(ArchiveName);
outs() << sys::path::get_separator(); outs() << '/';
} }
outs() << Name << "\n"; outs() << Name << "\n";
} }