Skip to content

Commit 2300791

Browse files
---
yaml --- r: 103864 b: refs/heads/try c: 63ba2e1 h: refs/heads/master v: v3
1 parent 68dc961 commit 2300791

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 62f1d68439dcfd509eaca29887afa97f22938373
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6e7f170fedd3c526a643c0b2d13863acd982be02
5-
refs/heads/try: 8658a433f2ad46e5834d2168a73df9cae88c29e5
5+
refs/heads/try: 63ba2e1219088514b578bf81c0481baaeb6e941e
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/test/run-pass/simd-generics.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#[feature(simd)];
12+
1113
use std::ops;
1214

1315
#[simd] struct f32x4(f32, f32, f32, f32);
@@ -22,7 +24,7 @@ impl ops::Add<f32x4, f32x4> for f32x4 {
2224
}
2325
}
2426

25-
fn main() {
27+
pub fn main() {
2628
let lr = f32x4(1.0f32, 2.0f32, 3.0f32, 4.0f32);
2729

2830
// lame-o

branches/try/src/test/run-pass/simd-issue-10604.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
#[allow(experimental)];
11+
#[feature(simd)];
1012

11-
fn main() {
13+
pub fn main() {
1214
let _o = None::<std::unstable::simd::i32x4>;
1315
}

0 commit comments

Comments
 (0)