mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14: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) {
|
private static int numberOfTrailingZerosL(long i) {
|
||||||
//TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
// TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
||||||
return Long.numberOfTrailingZeros(i);
|
return Long.numberOfTrailingZeros(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int numberOfLeadingZerosI(int i) {
|
private static int numberOfLeadingZerosI(int i) {
|
||||||
//TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
// TODO: Intrinsify this, WASM has dedicated instructions for this operation!!!
|
||||||
return Integer.numberOfLeadingZeros(i);
|
return Integer.numberOfLeadingZeros(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user