Skip to content

Commit 71cfa84

Browse files
author
Nuri Amari
committed
Fix compile errors in gold plugin
llvm#109847 inadvertently introduced compile errors to the gold plugin. This PR fixes the issue.
1 parent 0b8fec6 commit 71cfa84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/gold/gold-plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ static std::unique_ptr<LTO> createLTO(IndexWriteCallback OnIndexWrite,
899899
std::string OldPrefix, NewPrefix;
900900
getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix);
901901
Backend = createWriteIndexesThinBackend(
902-
llvm::hardware_concurrency(options::Parallelism) OldPrefix, NewPrefix,
902+
llvm::hardware_concurrency(options::Parallelism), OldPrefix, NewPrefix,
903903
// TODO: Add support for optional native object path in
904904
// thinlto_prefix_replace option to match lld.
905905
/*NativeObjectPrefix=*/"", options::thinlto_emit_imports_files,

0 commit comments

Comments
 (0)