@@ -350,7 +350,7 @@ PhaseStatus Compiler::fgRemoveEmptyTry()
350350 continue ;
351351 }
352352
353- if (UsesCallfinallyThunks ())
353+ if (UsesCallFinallyThunks ())
354354 {
355355 // Look for blocks that are always jumps to a call finally
356356 // pair that targets the finally
@@ -796,7 +796,7 @@ PhaseStatus Compiler::fgCloneFinally()
796796 {
797797 BasicBlock* jumpDest = nullptr ;
798798
799- if (UsesCallfinallyThunks ())
799+ if (UsesCallFinallyThunks ())
800800 {
801801 // Blocks that transfer control to callfinallies are usually
802802 // BBJ_ALWAYS blocks, but the last block of a try may fall
@@ -883,7 +883,7 @@ PhaseStatus Compiler::fgCloneFinally()
883883 isUpdate = true ;
884884 }
885885
886- if (UsesCallfinallyThunks ())
886+ if (UsesCallFinallyThunks ())
887887 {
888888 // When there are callfinally thunks, we don't expect to see the
889889 // callfinally within a handler region either.
@@ -1345,7 +1345,7 @@ void Compiler::fgDebugCheckTryFinallyExits()
13451345 // logically "belong" to a child region and the exit
13461346 // path validity will be checked when looking at the
13471347 // try blocks in that region.
1348- if (UsesCallfinallyThunks () && block->KindIs (BBJ_CALLFINALLY))
1348+ if (UsesCallFinallyThunks () && block->KindIs (BBJ_CALLFINALLY))
13491349 {
13501350 continue ;
13511351 }
@@ -1367,12 +1367,12 @@ void Compiler::fgDebugCheckTryFinallyExits()
13671367 // (e) via an always jump clonefinally exit
13681368 bool isCallToFinally = false ;
13691369
1370- if (UsesCallfinallyThunks () && succBlock->KindIs (BBJ_CALLFINALLY))
1370+ if (UsesCallFinallyThunks () && succBlock->KindIs (BBJ_CALLFINALLY))
13711371 {
13721372 // case (a1)
13731373 isCallToFinally = isFinally && succBlock->TargetIs (finallyBlock);
13741374 }
1375- else if (!UsesCallfinallyThunks () && block->KindIs (BBJ_CALLFINALLY))
1375+ else if (!UsesCallFinallyThunks () && block->KindIs (BBJ_CALLFINALLY))
13761376 {
13771377 // case (a2)
13781378 isCallToFinally = isFinally && block->TargetIs (finallyBlock);
@@ -1533,7 +1533,7 @@ PhaseStatus Compiler::fgMergeFinallyChains()
15331533 }
15341534#endif // FEATURE_EH_WINDOWS_X86
15351535
1536- if (!UsesCallfinallyThunks ())
1536+ if (!UsesCallFinallyThunks ())
15371537 {
15381538 // For non-thunk EH models (x86) the callfinallys may contain
15391539 // statements, and merging is not safe unless the callfinally
0 commit comments