Allow access to the .pdata and .xdata sections through the TargetAsmInfo
authorCharles Davis <cdavis@mines.edu>
Sun, 22 May 2011 00:03:24 +0000 (00:03 +0000)
committerCharles Davis <cdavis@mines.edu>
Sun, 22 May 2011 00:03:24 +0000 (00:03 +0000)
class.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131816 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetAsmInfo.h

index 1ae94eef8f1330287030f895ae0cf8a9a0e6e145..d281328a3239fd4554ba26424df1ebf6fdb47cfe 100644 (file)
@@ -62,6 +62,14 @@ public:
     return TLOF->getDwarfFrameSection();
   }
 
+  const MCSection *getWin64EHFuncTableSection() const {
+    return TLOF->getWin64EHFuncTableSection();
+  }
+
+  const MCSection *getWin64EHTableSection() const {
+    return TLOF->getWin64EHTableSection();
+  }
+
   unsigned getFDEEncoding(bool CFI) const {
     return TLOF->getFDEEncoding(CFI);
   }