We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f20a5d commit 1e3d1b6Copy full SHA for 1e3d1b6
src/librustc/mir/interpret/allocation.rs
@@ -683,7 +683,7 @@ impl UndefMask {
683
// fill in all the other blocks (much faster than one bit at a time)
684
if new_state {
685
for block in (blocka + 1) .. blockb {
686
- self.blocks[block] = 0xFFFF_FFFF_FFFF_FFFF;
+ self.blocks[block] = u64::max_value();
687
}
688
} else {
689
0 commit comments