<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- a/src/mklibs-readelf/main.cpp
+++ b/src/mklibs-readelf/main.cpp
@@ -84,7 +84,7 @@ static void process_symbols_provided (co
       continue;
     if (shndx == SHN_UNDEF || shndx == SHN_ABS)
       continue;
-    if (type != STT_NOTYPE &amp;&amp; type != STT_OBJECT &amp;&amp; type != STT_FUNC &amp;&amp; type != STT_GNU_IFUNC &amp;&amp; type != STT_COMMON &amp;&amp; type != STT_TLS)
+    if (type != STT_NOTYPE &amp;&amp; type != STT_OBJECT &amp;&amp; type != STT_FUNC &amp;&amp; type != STT_COMMON &amp;&amp; type != STT_TLS)
       continue;
     if (!name.size())
       continue;
@@ -115,7 +115,7 @@ static void process_symbols_undefined (c
       continue;
     if (shndx != SHN_UNDEF)
       continue;
-    if (type != STT_NOTYPE &amp;&amp; type != STT_OBJECT &amp;&amp; type != STT_FUNC &amp;&amp; type != STT_GNU_IFUNC &amp;&amp; type != STT_COMMON &amp;&amp; type != STT_TLS)
+    if (type != STT_NOTYPE &amp;&amp; type != STT_OBJECT &amp;&amp; type != STT_FUNC &amp;&amp; type != STT_COMMON &amp;&amp; type != STT_TLS)
       continue;
     if (!name.size())
       continue;
</pre></body></html>