diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index d04a5f3643..a4006a889b 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -15,7 +15,6 @@ #define LLVM_TARGET_TARGETASMINFO_H #include "llvm/Target/TargetLoweringObjectFile.h" -#include "llvm/Target/TargetFrameLowering.h" #include "llvm/Target/TargetRegisterInfo.h" namespace llvm { @@ -25,7 +24,6 @@ namespace llvm { class TargetLoweringObjectFile; class TargetAsmInfo { - const TargetFrameLowering *TFI; const TargetLoweringObjectFile *TLOF; public: @@ -62,12 +60,6 @@ public: bool isFunctionEHFrameSymbolPrivate() const { return TLOF->isFunctionEHFrameSymbolPrivate(); } - - int getCompactUnwindEncoding(ArrayRef<MCCFIInstruction> Instrs, - int DataAlignmentFactor, - bool IsEH) const { - return TFI->getCompactUnwindEncoding(Instrs, DataAlignmentFactor, IsEH); - } }; } |