[MC] Make getEHFrameSection const like every other getter (NFC)
authorJonas Devlieghere <jonas@devlieghere.com>
Tue, 12 Jan 2021 00:56:02 +0000 (16:56 -0800)
committerJonas Devlieghere <jonas@devlieghere.com>
Tue, 12 Jan 2021 00:56:29 +0000 (16:56 -0800)
llvm/include/llvm/MC/MCObjectFileInfo.h

index 1a737d6..2e6a84b 100644 (file)
@@ -412,9 +412,7 @@ public:
   // XCOFF specific sections
   MCSection *getTOCBaseSection() const { return TOCBaseSection; }
 
-  MCSection *getEHFrameSection() {
-    return EHFrameSection;
-  }
+  MCSection *getEHFrameSection() const { return EHFrameSection; }
 
   enum Environment { IsMachO, IsELF, IsCOFF, IsWasm, IsXCOFF };
   Environment getObjectFileType() const { return Env; }