We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be33e4f commit f35978eCopy full SHA for f35978e
compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp
@@ -1251,8 +1251,9 @@ getFirstDefinitionForLinker(const GlobalValueSummaryList &GVSummaryList) {
1251
// here is basically the same as before threads are spawned in the `run`
1252
// function of `lib/LTO/ThinLTOCodeGenerator.cpp`.
1253
extern "C" LLVMRustThinLTOData *
1254
-LLVMRustCreateThinLTOData(LLVMRustThinLTOModule *modules, int num_modules,
1255
- const char **preserved_symbols, int num_symbols) {
+LLVMRustCreateThinLTOData(LLVMRustThinLTOModule *modules, unsigned num_modules,
+ const char **preserved_symbols,
1256
+ unsigned num_symbols) {
1257
auto Ret = std::make_unique<LLVMRustThinLTOData>();
1258
1259
// Load each module's summary and merge it into one combined index
0 commit comments