1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Allow access to the .pdata and .xdata sections through the TargetAsmInfo

class.

llvm-svn: 131816
This commit is contained in:
Charles Davis 2011-05-22 00:03:24 +00:00
parent 03847f8199
commit 53b696daee

View 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);
}