1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-11 16:58:12 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-11-01 15:22:58 +09:00
parent dff9fe2aab
commit 29ceb40279

View File

@ -353,7 +353,7 @@ std::tuple<i32, i32, i32> ObjectFile::scan_relocations() {
auto [got, gotplt, plt] = isec->scan_relocations();
num_got += got;
num_gotplt += gotplt;
num_got += plt;
num_plt += plt;
}
}
return {num_got, num_gotplt, num_plt};