1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-07-11 06:11:32 +00:00

Fix unused variable warnings

This commit is contained in:
Brandon Fish
2019-01-27 10:58:52 -06:00
parent 6bbdaa1c53
commit 384c27c4e3
7 changed files with 47 additions and 47 deletions

@ -12,12 +12,12 @@ pub extern "C" fn _llvm_log2_f64(value: f64, _ctx: &mut Ctx) -> f64 {
value.log2()
}
pub extern "C" fn _llvm_log10_f32(value: f64, _ctx: &mut Ctx) -> f64 {
pub extern "C" fn _llvm_log10_f32(_value: f64, _ctx: &mut Ctx) -> f64 {
debug!("emscripten::_llvm_log10_f32");
-1.0
}
pub extern "C" fn _llvm_log2_f32(value: f64, _ctx: &mut Ctx) -> f64 {
pub extern "C" fn _llvm_log2_f32(_value: f64, _ctx: &mut Ctx) -> f64 {
debug!("emscripten::_llvm_log10_f32");
-1.0
}