diff options
| author | Andrew Kaylor <andrew.kaylor@intel.com> | 2015-03-03 20:22:09 +0000 |
|---|---|---|
| committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2015-03-03 20:22:09 +0000 |
| commit | e07b2a06d3c941a825de41daf40f1171d1f44fd6 (patch) | |
| tree | cf91a725ac80d55cf84bd2215a8689c809bfd4bc /llvm/lib | |
| parent | b283815a3021d42803da1918ac808bd8e7e79a4f (diff) | |
| download | bcm5719-llvm-e07b2a06d3c941a825de41daf40f1171d1f44fd6.tar.gz bcm5719-llvm-e07b2a06d3c941a825de41daf40f1171d1f44fd6.zip | |
Fixing problem with field initialization order
llvm-svn: 231122
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/WinEHPrepare.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/WinEHPrepare.cpp b/llvm/lib/CodeGen/WinEHPrepare.cpp index 4b22d1c7e14..68498a5aade 100644 --- a/llvm/lib/CodeGen/WinEHPrepare.cpp +++ b/llvm/lib/CodeGen/WinEHPrepare.cpp @@ -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, |

