mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-30 06:40:53 +00:00
Move a function out-of-line.
llvm-svn: 134640
This commit is contained in:
parent
ccdaa7946c
commit
49b8e85286
@ -20,6 +20,7 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
template <typename T> class ArrayRef;
|
||||
class MCSection;
|
||||
class MCContext;
|
||||
class MachineFunction;
|
||||
@ -84,10 +85,8 @@ public:
|
||||
return TLOF->isFunctionEHFrameSymbolPrivate();
|
||||
}
|
||||
|
||||
int getCompactUnwindEncoding(const std::vector<MCCFIInstruction> &Instrs,
|
||||
int DataAlignmentFactor, bool IsEH) const {
|
||||
return TFI->getCompactUnwindEncoding(Instrs, DataAlignmentFactor, IsEH);
|
||||
}
|
||||
int getCompactUnwindEncoding(ArrayRef<MCCFIInstruction> Instrs,
|
||||
int DataAlignmentFactor, bool IsEH) const;
|
||||
|
||||
const unsigned *getCalleeSavedRegs(MachineFunction *MF = 0) const {
|
||||
return TRI->getCalleeSavedRegs(MF);
|
||||
|
@ -26,3 +26,9 @@ TargetAsmInfo::TargetAsmInfo(const TargetMachine &TM) {
|
||||
TRI = TM.getRegisterInfo();
|
||||
TFI->getInitialFrameState(InitialFrameState);
|
||||
}
|
||||
|
||||
int TargetAsmInfo::getCompactUnwindEncoding(ArrayRef<MCCFIInstruction> Instrs,
|
||||
int DataAlignmentFactor,
|
||||
bool IsEH) const {
|
||||
return TFI->getCompactUnwindEncoding(Instrs, DataAlignmentFactor, IsEH);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user