Skip to content

Commit e184bb3

Browse files
committed
Turn LazyBailout off by default
1 parent 8527dc2 commit e184bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Backend/Func.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2111,7 +2111,7 @@ bool
21112111
Func::ShouldDoLazyBailOut() const
21122112
{
21132113
#if defined(_M_X64)
2114-
if (PHASE_ON1(Js::LazyBailoutPhase) ||
2114+
if (!PHASE_ON1(Js::LazyBailoutPhase) ||
21152115
this->GetJITFunctionBody()->IsAsmJsMode() || // don't have bailouts in asm.js
21162116
this->HasTry() || // lazy bailout in function with try/catch not supported for now
21172117
// `EHBailoutPatchUp` set a `hasBailedOut` bit to rethrow the exception in the interpreter

0 commit comments

Comments
 (0)