remove a dead variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-09-16 01:29:11 +00:00
parent 4f3e7aa154
commit b107fc15fc
2 changed files with 0 additions and 3 deletions

View File

@ -39,7 +39,6 @@ unsigned char* JITDwarfEmitter::EmitDwarfTable(MachineFunction& F,
unsigned char* EndFunction) {
const TargetMachine& TM = F.getTarget();
TD = TM.getTargetData();
needsIndirectEncoding = TM.getMCAsmInfo()->getNeedsIndirectEncoding();
stackGrowthDirection = TM.getFrameInfo()->getStackGrowthDirection();
RI = TM.getRegisterInfo();
JCE = &jce;
@ -608,7 +607,6 @@ unsigned JITDwarfEmitter::GetDwarfTableSizeInBytes(MachineFunction& F,
unsigned char* EndFunction) {
const TargetMachine& TM = F.getTarget();
TD = TM.getTargetData();
needsIndirectEncoding = TM.getMCAsmInfo()->getNeedsIndirectEncoding();
stackGrowthDirection = TM.getFrameInfo()->getStackGrowthDirection();
RI = TM.getRegisterInfo();
JCE = &jce;

View File

@ -32,7 +32,6 @@ class JITDwarfEmitter {
const TargetRegisterInfo* RI;
MachineModuleInfo* MMI;
JIT& Jit;
bool needsIndirectEncoding;
bool stackGrowthDirection;
unsigned char* EmitExceptionTable(MachineFunction* MF,