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

Bill Wendling isanbard at gmail.com
Wed Jun 22 17:12:58 PDT 2011


Author: void
Date: Wed Jun 22 19:12:58 2011
New Revision: 133669

URL: http://llvm.org/viewvc/llvm-project?rev=133669&view=rev
Log:
Allow the AsmInfo to query the TLOF to see if it supports compact unwind.

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=133669&r1=133668&r2=133669&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetAsmInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetAsmInfo.h Wed Jun 22 19:12:58 2011
@@ -79,6 +79,10 @@
     return TLOF->isFunctionEHFrameSymbolPrivate();
   }
 
+  bool getSupportsCompactUnwindInfo() const {
+    return TLOF->getSupportsCompactUnwindInfo();
+  }
+
   const unsigned *getCalleeSavedRegs(MachineFunction *MF = 0) const {
     return TRI->getCalleeSavedRegs(MF);
   }





More information about the llvm-commits mailing list