Skip to content

Commit 64f7f95

Browse files
authored
JIT: Fix formatting after liveness change (#103954)
1 parent afb75a2 commit 64f7f95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/coreclr/jit/gcencode.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4068,7 +4068,8 @@ void GCInfo::gcMakeRegPtrTable(
40684068
// TODO: Decide on whether we should enable this optimization for all
40694069
// targets: https://github.com/dotnet/runtime/issues/103917
40704070
#ifdef TARGET_XARCH
4071-
const bool noTrackedGCSlots = compiler->opts.MinOpts() && !compiler->opts.jitFlags->IsSet(JitFlags::JIT_FLAG_PREJIT);
4071+
const bool noTrackedGCSlots =
4072+
compiler->opts.MinOpts() && !compiler->opts.jitFlags->IsSet(JitFlags::JIT_FLAG_PREJIT);
40724073
#else
40734074
const bool noTrackedGCSlots = false;
40744075
#endif

0 commit comments

Comments
 (0)