From 4db0eea010e7f490935b01e04feeedd4dc7dadf2 Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Fri, 14 Jun 2019 10:44:08 +0200 Subject: [PATCH] Fix indentation --- src/fn_call.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fn_call.rs b/src/fn_call.rs index d7e52b483032..eca1d9144ec4 100644 --- a/src/fn_call.rs +++ b/src/fn_call.rs @@ -570,7 +570,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx "cbrtf" => f.cbrt(), "coshf" => f.cosh(), "sinhf" => f.sinh(), - "tanf" => f.tan(), + "tanf" => f.tan(), _ => bug!(), }; this.write_scalar(Scalar::from_u32(f.to_bits()), dest)?;