mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-01 07:30:31 +00:00
Fixing problem with field initialization order
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231122 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e8e51a18a2
commit
630bf05f92
@ -133,8 +133,8 @@ class WinEHCatchDirector : public WinEHCloningDirectorBase {
|
||||
public:
|
||||
WinEHCatchDirector(LandingPadInst *LPI, Function *CatchFn, Value *Selector,
|
||||
Value *EHObj, FrameVarInfoMap &VarInfo)
|
||||
: WinEHCloningDirectorBase(LPI, CatchFn, VarInfo), EHObj(EHObj),
|
||||
CurrentSelector(Selector->stripPointerCasts()) {}
|
||||
: WinEHCloningDirectorBase(LPI, CatchFn, VarInfo),
|
||||
CurrentSelector(Selector->stripPointerCasts()), EHObj(EHObj) {}
|
||||
|
||||
CloningAction handleBeginCatch(ValueToValueMapTy &VMap,
|
||||
const Instruction *Inst,
|
||||
|
Loading…
Reference in New Issue
Block a user