diff options
| -rw-r--r-- | src/librustc_trans/intrinsic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_trans/intrinsic.rs b/src/librustc_trans/intrinsic.rs index 8b62a1be80c..72c619a3b0c 100644 --- a/src/librustc_trans/intrinsic.rs +++ b/src/librustc_trans/intrinsic.rs @@ -1181,8 +1181,8 @@ fn generic_simd_intrinsic<'a, 'tcx>( 32 => C_undef(Type::f32(bx.cx)), 64 => C_undef(Type::f64(bx.cx)), v => { - return_error!( - "unsupported {} from `{}` with element `{}` of size `{}` to `{}`", + return_error!(r#" +unsupported {} from `{}` with element `{}` of size `{}` to `{}`"#, $name, in_ty, in_elem, v, ret_ty ) } |
