diff --git a/src/coreclr/jit/gcencode.cpp b/src/coreclr/jit/gcencode.cpp index 91f2a481a68ce..4863c95a7f59d 100644 --- a/src/coreclr/jit/gcencode.cpp +++ b/src/coreclr/jit/gcencode.cpp @@ -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