Allow the AsmInfo to query the TLOF to see if it supports compact unwind.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133669 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2011-06-23 00:12:58 +00:00
parent 3f2ea825bd
commit de0cea7e49

View File

@ -79,6 +79,10 @@ public:
return TLOF->isFunctionEHFrameSymbolPrivate();
}
bool getSupportsCompactUnwindInfo() const {
return TLOF->getSupportsCompactUnwindInfo();
}
const unsigned *getCalleeSavedRegs(MachineFunction *MF = 0) const {
return TRI->getCalleeSavedRegs(MF);
}