Skip to content

Commit 07755de

Browse files
---
yaml --- r: 107967 b: refs/heads/dist-snap c: 63ba2e1 h: refs/heads/master i: 107965: 2becece 107963: abb5f13 107959: 1e0726c 107951: 1c027b4 107935: 5cd96d3 107903: 49283b9 v: v3
1 parent 7d4b1a3 commit 07755de

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
@@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 8658a433f2ad46e5834d2168a73df9cae88c29e5
9+
refs/heads/dist-snap: 63ba2e1219088514b578bf81c0481baaeb6e941e
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/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/dist-snap/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)