File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ class ParallelMoveResolver {
419419 void EmitMovesFromSource (RegisterT source_reg, GapMoveTargets&& targets) {
420420 DCHECK (moves_from_register_[source_reg.code ()].is_empty ());
421421 if constexpr (DecompressIfNeeded) {
422- static_assert (COMPRESS_POINTERS_BOOL);
422+ // static_assert(COMPRESS_POINTERS_BOOL);
423423 if (targets.needs_decompression == kNeedsDecompression ) {
424424 __ DecompressTagged (source_reg, source_reg);
425425 }
@@ -462,7 +462,7 @@ class ParallelMoveResolver {
462462 // Decompress after the first move, subsequent moves reuse this register so
463463 // they're guaranteed to be decompressed.
464464 if constexpr (DecompressIfNeeded) {
465- static_assert (COMPRESS_POINTERS_BOOL);
465+ // static_assert(COMPRESS_POINTERS_BOOL);
466466 if (targets.needs_decompression == kNeedsDecompression ) {
467467 __ DecompressTagged (register_with_slot_value, register_with_slot_value);
468468 targets.needs_decompression = kDoesNotNeedDecompression ;
You can’t perform that action at this time.
0 commit comments