mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-09 19:06:04 +00:00
9 lines
238 B
Rust
9 lines
238 B
Rust
|
use wasmer_runtime_core::vm::Ctx;
|
||
|
|
||
|
///emscripten: _llvm_bswap_i64
|
||
|
pub fn _llvm_bswap_i64(_ctx: &mut Ctx, _low: i32, high: i32) -> i32 {
|
||
|
debug!("emscripten::_llvm_bswap_i64");
|
||
|
// setTempRet0(low.swap_bytes)
|
||
|
high.swap_bytes()
|
||
|
}
|