[ELF] Fix type of ciesWithLSDA after D84610
authorFangrui Song <i@maskray.me>
Wed, 5 Aug 2020 23:33:54 +0000 (16:33 -0700)
committerFangrui Song <i@maskray.me>
Wed, 5 Aug 2020 23:33:54 +0000 (16:33 -0700)
lld/ELF/SyntheticSections.cpp

index ec9fba6..e453c3b 100644 (file)
@@ -480,7 +480,7 @@ void EhFrameSection::iterateFDEWithLSDAAux(
 template <class ELFT>
 void EhFrameSection::iterateFDEWithLSDA(
     llvm::function_ref<void(InputSection &)> fn) {
-  DenseSet<uint64_t> ciesWithLSDA;
+  DenseSet<size_t> ciesWithLSDA;
   for (EhInputSection *sec : sections) {
     ciesWithLSDA.clear();
     if (sec->areRelocsRela)