Updated nightly version

This commit is contained in:
Syrus
2019-06-13 21:37:55 +02:00
parent 86b78c6b14
commit 4059562560
3 changed files with 3 additions and 5 deletions

View File

@ -1,11 +1,9 @@
use wasmer_runtime_core::vm::Ctx;
#[allow(clippy::all)]
pub fn _llvm_copysign_f32(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
x.copysign(y)
}
#[allow(clippy::all)]
pub fn _llvm_copysign_f64(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
x.copysign(y)
}