summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2015-03-03 20:22:09 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2015-03-03 20:22:09 +0000
commite07b2a06d3c941a825de41daf40f1171d1f44fd6 (patch)
treecf91a725ac80d55cf84bd2215a8689c809bfd4bc /llvm/lib
parentb283815a3021d42803da1918ac808bd8e7e79a4f (diff)
downloadbcm5719-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.cpp4
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,
OpenPOWER on IntegriCloud