File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed
Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -391,9 +391,6 @@ class RewriteInstance {
391391 // / Return true if the section holds debug information.
392392 static bool isDebugSection (StringRef SectionName);
393393
394- // / Return true if the section holds linux kernel symbol information.
395- static bool isKSymtabSection (StringRef SectionName);
396-
397394 // / Adds Debug section to overwrite.
398395 static void addToDebugSectionsToOverwrite (const char *Section) {
399396 DebugSectionsToOverwrite.emplace_back (Section);
Original file line number Diff line number Diff line change @@ -5767,10 +5767,3 @@ bool RewriteInstance::isDebugSection(StringRef SectionName) {
57675767
57685768 return false ;
57695769}
5770-
5771- bool RewriteInstance::isKSymtabSection (StringRef SectionName) {
5772- if (SectionName.starts_with (" __ksymtab" ))
5773- return true ;
5774-
5775- return false ;
5776- }
You can’t perform that action at this time.
0 commit comments