get PHP kind of working...

This commit is contained in:
Mark McCaskey
2019-04-04 13:58:05 -07:00
parent e03a4a2065
commit cad4f9b544
6 changed files with 29 additions and 13 deletions

View File

@ -1,8 +1,9 @@
use crate::emscripten_target;
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)
emscripten_target::setTempRet0(_ctx, _low.swap_bytes());
high.swap_bytes()
}