aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-07-18 22:32:12 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-07-18 22:32:12 +0000
commitc8c3acfea439998da4fae895becce7c1468e3c63 (patch)
tree0c9ecea510aaa5440d1bc8017aaa657b8049ea9e /lib
parent2d28617de2b0b731c08d1af9e830f31e14ac75b4 (diff)
downloadexternal_llvm-c8c3acfea439998da4fae895becce7c1468e3c63.zip
external_llvm-c8c3acfea439998da4fae895becce7c1468e3c63.tar.gz
external_llvm-c8c3acfea439998da4fae895becce7c1468e3c63.tar.bz2
Eliminate TargetAsmInfo::getCompactUnwindEncoding. This get rid of the
use of TargetFrameLowering in TargetAsmInfo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135439 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/TargetAsmInfo.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp
index 3320bfb..94f56f6 100644
--- a/lib/Target/TargetAsmInfo.cpp
+++ b/lib/Target/TargetAsmInfo.cpp
@@ -8,14 +8,11 @@
//===----------------------------------------------------------------------===//
#include "llvm/Target/TargetAsmInfo.h"
-#include "llvm/Target/TargetData.h"
#include "llvm/Target/TargetLowering.h"
#include "llvm/Target/TargetLoweringObjectFile.h"
#include "llvm/Target/TargetMachine.h"
-#include "llvm/Target/TargetRegisterInfo.h"
using namespace llvm;
TargetAsmInfo::TargetAsmInfo(const TargetMachine &TM) {
TLOF = &TM.getTargetLowering()->getObjFileLowering();
- TFI = TM.getFrameLowering();
}