mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-05 11:57:07 +00:00
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:
parent
a7db376a63
commit
5b7c499806
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user