Removing unused private field.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Kaylor 2015-02-23 21:03:30 +00:00
parent a7db376a63
commit 5b7c499806

View File

@ -83,7 +83,6 @@ public:
virtual Value *materializeValueFor(Value *V) override;
private:
Function *OutlinedFn;
FrameVarInfoMap &FrameVarInfo;
IRBuilder<> Builder;
};
@ -582,8 +581,7 @@ CloningDirector::CloningAction WinEHCatchDirector::handleInstruction(
WinEHFrameVariableMaterializer::WinEHFrameVariableMaterializer(
Function *OutlinedFn, FrameVarInfoMap &FrameVarInfo)
: OutlinedFn(OutlinedFn), FrameVarInfo(FrameVarInfo),
Builder(OutlinedFn->getContext()) {
: FrameVarInfo(FrameVarInfo), Builder(OutlinedFn->getContext()) {
Builder.SetInsertPoint(&OutlinedFn->getEntryBlock());
// FIXME: Do something with the FrameVarMapped so that it is shared across the
// function.