Skip to content

Commit cc1ad3e

Browse files
committed
---
yaml --- r: 233459 b: refs/heads/beta c: f1d3b02 h: refs/heads/master i: 233457: 89068a4 233455: f6ce0c7 v: v3
1 parent b8fdc56 commit cc1ad3e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 78eead63fa91dbe156236b547bb4290f02784712
26+
refs/heads/beta: f1d3b0271ef62e52e65962744701861c32534114
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: 370fe2786109360f7c35b8ba552b83b773dd71d6
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/librustc_platform_intrinsics/arm.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
3535
"vsqrtq_f32" => plain!("llvm.sqrt.v4f32", (f32x4) -> f32x4),
3636
"vsqrtq_f64" => plain!("llvm.sqrt.v2f64", (f64x2) -> f64x2),
3737

38+
"vrecpeq_f32" => p!("vrecpe.v4f32", (f32x4) -> f32x4),
3839
"vrsqrteq_f32" => p!("vrsqrte.v4f32", (f32x4) -> f32x4),
3940
"vrsqrteq_f64" => p!("vrsqrte.v2f64", (f64x2) -> f64x2),
4041

branches/beta/src/librustc_platform_intrinsics/x86.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
2424
"mm_movemask_epi8" => p!("sse2.pmovmskb.128", (i8x16) -> i32),
2525

2626
"mm_rsqrt_ps" => p!("sse.rsqrt.ps", (f32x4) -> f32x4),
27+
"mm_rcp_ps" => p!("sse.rcp.ps", (f32x4) -> f32x4),
2728

2829
"mm_sqrt_ps" => plain!("llvm.sqrt.v4f32", (f32x4) -> f32x4),
2930
"mm_sqrt_pd" => plain!("llvm.sqrt.v2f64", (f64x2) -> f64x2),

0 commit comments

Comments
 (0)