mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-21 16:04:09 -08:00
fuck
This commit is contained in:
parent
5830392f60
commit
30a61fd9dd
|
@ -515,13 +515,13 @@ public final class LaxMalloc {
|
|||
}
|
||||
|
||||
private static int numberOfTrailingZerosL(long i) {
|
||||
//TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
||||
return Long.numberOfTrailingZeros(i);
|
||||
}
|
||||
// TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
||||
return Long.numberOfTrailingZeros(i);
|
||||
}
|
||||
|
||||
private static int numberOfLeadingZerosI(int i) {
|
||||
//TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
||||
return Integer.numberOfLeadingZeros(i);
|
||||
}
|
||||
// TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
||||
return Integer.numberOfLeadingZeros(i);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user