From ba55b8f3e48e9ac326cdb601768cb1ded9ffefa2 Mon Sep 17 00:00:00 2001 From: Charles Davis Date: Sun, 22 May 2011 00:03:24 +0000 Subject: [PATCH] Allow access to the .pdata and .xdata sections through the TargetAsmInfo class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131816 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetAsmInfo.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 1ae94eef8f1..d281328a323 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -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); } -- 2.34.1