Skip to content

Commit fabe7e3

Browse files
authored
[llvm][gold] Fix syntax error (#111412)
This seems to have been overlooked in #109847, probably because most bots don't build w/ gold enabled.
1 parent 1297ff1 commit fabe7e3

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)