Skip to content

Commit

Permalink
Add AArch64 vrecpeq_... intrinsic (necessary for minimal API).
Browse files Browse the repository at this point in the history
  • Loading branch information
huonw committed Aug 17, 2015
1 parent b067e44 commit 02e9734
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/librustc_platform_intrinsics/aarch64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {

"vrsqrteq_f32" => p!("vrsqrte.v4f32", (f32x4) -> f32x4),
"vrsqrteq_f64" => p!("vrsqrte.v2f64", (f64x2) -> f64x2),
"vrecpeq_f32" => p!("vrecpe.v4f32", (f32x4) -> f32x4),
"vrecpeq_f64" => p!("vrecpe.v2f64", (f64x2) -> f64x2),

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

0 comments on commit 02e9734

Please sign in to comment.