diff options
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 2f4548c..9d3c306 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -2033,7 +2033,8 @@ bool MachOObjectFile::isSectionBSS(DataRefImpl Sec) const { bool MachOObjectFile::isDebugSection(StringRef SectionName) const { return SectionName.startswith("__debug") || SectionName.startswith("__zdebug") || - SectionName.startswith("__apple") || SectionName == "__gdb_index"; + SectionName.startswith("__apple") || SectionName == "__gdb_index" || + SectionName == "__swift_ast"; } unsigned MachOObjectFile::getSectionID(SectionRef Sec) const { |