Skip to content

Commit 2f5c1b8

Browse files
committed
---
yaml --- r: 233872 b: refs/heads/beta c: 14f9c97 h: refs/heads/master v: v3
1 parent c09996f commit 2f5c1b8

File tree

2 files changed

+1
-41
lines changed

2 files changed

+1
-41
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: 29dcff3aa2ca3d867bc83cb555271de7ba7ac5a5
26+
refs/heads/beta: 14f9c97356a9144a5b2ef1ff309140196dfea3da
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/lib.rs

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -52,46 +52,6 @@ fn agg(flatten: bool, types: Vec<Type>) -> Type {
5252
Type::Aggregate(flatten, types)
5353
}
5454

55-
macro_rules! ty {
56-
(f32x8) => (v(f(32), 8));
57-
(f64x4) => (v(f(64), 4));
58-
59-
(i8x32) => (v(i(8), 32));
60-
(i16x16) => (v(i(16), 16));
61-
(i32x8) => (v(i(32), 8));
62-
(i64x4) => (v(i(64), 4));
63-
64-
(f32x4) => (v(f(32), 4));
65-
(f64x2) => (v(f(64), 2));
66-
67-
(i8x16) => (v(i(8), 16));
68-
(i16x8) => (v(i(16), 8));
69-
(i32x4) => (v(i(32), 4));
70-
(i64x2) => (v(i(64), 2));
71-
72-
(f32x2) => (v(f(32), 2));
73-
(i8x8) => (v(i(8), 8));
74-
(i16x4) => (v(i(16), 4));
75-
(i32x2) => (v(i(32), 2));
76-
(i64x1)=> (v(i(64), 1));
77-
78-
(i64) => (i(64));
79-
(i32) => (i(32));
80-
(i16) => (i(16));
81-
(i8) => (i(8));
82-
(f32) => (f(32));
83-
(f64) => (f(64));
84-
}
85-
macro_rules! plain {
86-
($name: expr, ($($inputs: tt),*) -> $output: tt) => {
87-
Intrinsic {
88-
inputs: vec![$(ty!($inputs)),*],
89-
output: ty!($output),
90-
definition: ::IntrinsicDef::Named($name)
91-
}
92-
}
93-
}
94-
9555
mod x86;
9656
mod arm;
9757
mod aarch64;

0 commit comments

Comments
 (0)