[llvm-commits] [llvm] r131816 - /llvm/trunk/include/llvm/Target/TargetAsmInfo.h
Charles Davis
cdavis at mines.edu
Sat May 21 17:03:24 PDT 2011
Author: cdavis
Date: Sat May 21 19:03:24 2011
New Revision: 131816
URL: http://llvm.org/viewvc/llvm-project?rev=131816&view=rev
Log:
Allow access to the .pdata and .xdata sections through the TargetAsmInfo
class.
Modified:
llvm/trunk/include/llvm/Target/TargetAsmInfo.h
Modified: llvm/trunk/include/llvm/Target/TargetAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetAsmInfo.h?rev=131816&r1=131815&r2=131816&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetAsmInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetAsmInfo.h Sat May 21 19:03:24 2011
@@ -62,6 +62,14 @@
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);
}
More information about the llvm-commits
mailing list