[llvm-commits] [llvm] r133670 - /llvm/trunk/include/llvm/Target/TargetAsmInfo.h

Bill Wendling isanbard at gmail.com
Wed Jun 22 17:23:04 PDT 2011


Author: void
Date: Wed Jun 22 19:23:04 2011
New Revision: 133670

URL: http://llvm.org/viewvc/llvm-project?rev=133670&view=rev
Log:
Allow the AsmInfo to query for the compact unwind section.

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=133670&r1=133669&r2=133670&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetAsmInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetAsmInfo.h Wed Jun 22 19:23:04 2011
@@ -59,6 +59,10 @@
     return TLOF->getEHFrameSection();
   }
 
+  const MCSection *getCompactUnwindSection() const {
+    return TLOF->getCompactUnwindSection();
+  }
+
   const MCSection *getDwarfFrameSection() const {
     return TLOF->getDwarfFrameSection();
   }





More information about the llvm-commits mailing list