Revert "sparc64: fix crash in ABI code for { f64, f32 } struct"

This reverts commit 41c6fa812b.
This commit is contained in:
Erik Desjardins 2024-03-17 13:33:59 -04:00
parent 8d5fd94e62
commit 6577aefc6f

View File

@ -35,7 +35,6 @@ where
data.last_offset = data.last_offset + Reg::i32().size;
}
if data.last_offset < offset {
for _ in 0..((offset - data.last_offset).bits() / 64)
.min((data.prefix.len() - data.prefix_index) as u64)
{
@ -43,7 +42,6 @@ where
data.prefix_index += 1;
data.last_offset = data.last_offset + Reg::i64().size;
}
}
if data.last_offset < offset {
if data.prefix_index == data.prefix.len() {