summaryrefslogtreecommitdiff
path: root/gold/icf.cc
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-10-13 05:08:25 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-10-13 05:08:39 -0700
commit1fb1d64f4a7c817f91a164dc22d5a22a0e75c1b8 (patch)
tree81d577a5a5ff88fd565ec93bb528c6cd9bfbc66a /gold/icf.cc
parent1b71cfcfdc3e13a655fefa6566b5564cec044c10 (diff)
downloadbinutils-gdb-1fb1d64f4a7c817f91a164dc22d5a22a0e75c1b8.tar.gz
Gold: Skip zero-sized sections for ICF
Skip zero-sized sections since there is no need to do ICF on them. * icf.cc (Icf::find_identical_sections): Skip zero-sized sections.
Diffstat (limited to 'gold/icf.cc')
-rw-r--r--gold/icf.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/icf.cc b/gold/icf.cc
index a60db7abc8d..54af4126696 100644
--- a/gold/icf.cc
+++ b/gold/icf.cc
@@ -973,6 +973,8 @@ Icf::find_identical_sections(const Input_objects* input_objects,
for (unsigned int i = 0; i < (*p)->shnum(); ++i)
{
+ if ((*p)->section_size(i) == 0)
+ continue;
const std::string section_name = (*p)->section_name(i);
if (!is_section_foldable_candidate(section_name))
{