From: Charles Davis Date: Sun, 22 May 2011 00:03:24 +0000 (+0000) Subject: Allow access to the .pdata and .xdata sections through the TargetAsmInfo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ba55b8f3e48e9ac326cdb601768cb1ded9ffefa2;p=oota-llvm.git 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 --- 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); }