Skip to content

Commit 02e9734

Browse files
committed
Add AArch64 vrecpeq_... intrinsic (necessary for minimal API).
1 parent b067e44 commit 02e9734

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/librustc_platform_intrinsics/aarch64.rs

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
3838

3939
"vrsqrteq_f32" => p!("vrsqrte.v4f32", (f32x4) -> f32x4),
4040
"vrsqrteq_f64" => p!("vrsqrte.v2f64", (f64x2) -> f64x2),
41+
"vrecpeq_f32" => p!("vrecpe.v4f32", (f32x4) -> f32x4),
42+
"vrecpeq_f64" => p!("vrecpe.v2f64", (f64x2) -> f64x2),
4143

4244
"vmaxq_f32" => p!("fmax.v4f32", (f32x4, f32x4) -> f32x4),
4345
"vmaxq_f64" => p!("fmax.v2f64", (f64x2, f64x2) -> f64x2),

0 commit comments

Comments
 (0)