Skip to content

Commit

Permalink
JIT: Fix formatting after liveness change (#103954)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobbotsch authored Jun 25, 2024
1 parent afb75a2 commit 64f7f95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/coreclr/jit/gcencode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4068,7 +4068,8 @@ void GCInfo::gcMakeRegPtrTable(
// TODO: Decide on whether we should enable this optimization for all
// targets: https://github.com/dotnet/runtime/issues/103917
#ifdef TARGET_XARCH
const bool noTrackedGCSlots = compiler->opts.MinOpts() && !compiler->opts.jitFlags->IsSet(JitFlags::JIT_FLAG_PREJIT);
const bool noTrackedGCSlots =
compiler->opts.MinOpts() && !compiler->opts.jitFlags->IsSet(JitFlags::JIT_FLAG_PREJIT);
#else
const bool noTrackedGCSlots = false;
#endif
Expand Down

0 comments on commit 64f7f95

Please sign in to comment.