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 {
391
391
// / Return true if the section holds debug information.
392
392
static bool isDebugSection (StringRef SectionName);
393
393
394
- // / Return true if the section holds linux kernel symbol information.
395
- static bool isKSymtabSection (StringRef SectionName);
396
-
397
394
// / Adds Debug section to overwrite.
398
395
static void addToDebugSectionsToOverwrite (const char *Section) {
399
396
DebugSectionsToOverwrite.emplace_back (Section);
Original file line number Diff line number Diff line change @@ -5767,10 +5767,3 @@ bool RewriteInstance::isDebugSection(StringRef SectionName) {
5767
5767
5768
5768
return false ;
5769
5769
}
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