Skip to content

Commit 10402d6

Browse files
committed
---
yaml --- r: 232473 b: refs/heads/try c: 9d78efb h: refs/heads/master i: 232471: 94fd877 v: v3
1 parent 67d8683 commit 10402d6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: edeb4f1c86cbf6af8ef9874d4b3af50f721ea1b8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 907bbac40fe22113bdf19023f1831faada7b7ec0
4+
refs/heads/try: 9d78efbd601935ec11ce1b5f3dbadb9e3123fe2b
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/librustc_platform_intrinsics/x86.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
5757
"subs_epu16" => p!("sse2.psubus.w", (i16x8, i16x8) -> i16x8),
5858
"subs_epu8" => p!("sse2.psubus.b", (i8x16, i8x16) -> i8x16),
5959

60+
"addsub_pd" => p!("sse3.addsub.pd", (f64x2, f64x2) -> f64x2),
61+
"addsub_ps" => p!("sse3.addsub.ps", (f32x4, f32x4) -> f32x4),
62+
"hadd_pd" => p!("sse3.hadd.pd", (f64x2, f64x2) -> f64x2),
63+
"hadd_ps" => p!("sse3.hadd.ps", (f32x4, f32x4) -> f32x4),
64+
"hsub_pd" => p!("sse3.hsub.pd", (f64x2, f64x2) -> f64x2),
65+
"hsub_ps" => p!("sse3.hsub.ps", (f32x4, f32x4) -> f32x4),
66+
6067
"shuffle_epi8" => p!("ssse3.pshuf.b.128", (i8x16, i8x16) -> i8x16),
6168
_ => return None
6269
})

0 commit comments

Comments
 (0)