aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/lld/COFF/ICF.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/lld/COFF/ICF.cpp')
-rw-r--r--contrib/llvm-project/lld/COFF/ICF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/lld/COFF/ICF.cpp b/contrib/llvm-project/lld/COFF/ICF.cpp
index 1b33634b63d6..386f861fb27f 100644
--- a/contrib/llvm-project/lld/COFF/ICF.cpp
+++ b/contrib/llvm-project/lld/COFF/ICF.cpp
@@ -131,7 +131,7 @@ bool ICF::assocEquals(const SectionChunk *a, const SectionChunk *b) {
auto considerForICF = [](const SectionChunk &assoc) {
StringRef Name = assoc.getSectionName();
return !(Name.startswith(".debug") || Name == ".gfids$y" ||
- Name == ".gljmp$y");
+ Name == ".giats$y" || Name == ".gljmp$y");
};
auto ra = make_filter_range(a->children(), considerForICF);
auto rb = make_filter_range(b->children(), considerForICF);