@@ -10,11 +10,11 @@ LL | extern "rust-intrinsic" fn f1() {}
10
10
error[E0658]: platform intrinsics are experimental and possibly buggy
11
11
--> $DIR/feature-gate-abi.rs:18:8
12
12
|
13
- LL | extern "platform- intrinsic" fn f2() {}
13
+ LL | extern "intrinsic" fn f2() {}
14
14
| ^^^^^^^^^^^^^^^^^^^^
15
15
|
16
16
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
17
- = help: add `#![feature(platform_intrinsics )]` to the crate attributes to enable
17
+ = help: add `#![feature(intrinsics )]` to the crate attributes to enable
18
18
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
19
19
20
20
error[E0658]: rust-call ABI is subject to change
@@ -39,11 +39,11 @@ LL | extern "rust-intrinsic" fn m1();
39
39
error[E0658]: platform intrinsics are experimental and possibly buggy
40
40
--> $DIR/feature-gate-abi.rs:27:12
41
41
|
42
- LL | extern "platform- intrinsic" fn m2();
42
+ LL | extern "intrinsic" fn m2();
43
43
| ^^^^^^^^^^^^^^^^^^^^
44
44
|
45
45
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
46
- = help: add `#![feature(platform_intrinsics )]` to the crate attributes to enable
46
+ = help: add `#![feature(intrinsics )]` to the crate attributes to enable
47
47
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
48
48
49
49
error[E0658]: rust-call ABI is subject to change
@@ -78,11 +78,11 @@ LL | extern "rust-intrinsic" fn m1() {}
78
78
error[E0658]: platform intrinsics are experimental and possibly buggy
79
79
--> $DIR/feature-gate-abi.rs:40:12
80
80
|
81
- LL | extern "platform- intrinsic" fn m2() {}
81
+ LL | extern "intrinsic" fn m2() {}
82
82
| ^^^^^^^^^^^^^^^^^^^^
83
83
|
84
84
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
85
- = help: add `#![feature(platform_intrinsics )]` to the crate attributes to enable
85
+ = help: add `#![feature(intrinsics )]` to the crate attributes to enable
86
86
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
87
87
88
88
error[E0658]: rust-call ABI is subject to change
@@ -107,11 +107,11 @@ LL | extern "rust-intrinsic" fn im1() {}
107
107
error[E0658]: platform intrinsics are experimental and possibly buggy
108
108
--> $DIR/feature-gate-abi.rs:49:12
109
109
|
110
- LL | extern "platform- intrinsic" fn im2() {}
110
+ LL | extern "intrinsic" fn im2() {}
111
111
| ^^^^^^^^^^^^^^^^^^^^
112
112
|
113
113
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
114
- = help: add `#![feature(platform_intrinsics )]` to the crate attributes to enable
114
+ = help: add `#![feature(intrinsics )]` to the crate attributes to enable
115
115
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
116
116
117
117
error[E0658]: rust-call ABI is subject to change
@@ -136,11 +136,11 @@ LL | type A1 = extern "rust-intrinsic" fn();
136
136
error[E0658]: platform intrinsics are experimental and possibly buggy
137
137
--> $DIR/feature-gate-abi.rs:56:18
138
138
|
139
- LL | type A2 = extern "platform- intrinsic" fn();
139
+ LL | type A2 = extern "intrinsic" fn();
140
140
| ^^^^^^^^^^^^^^^^^^^^
141
141
|
142
142
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
143
- = help: add `#![feature(platform_intrinsics )]` to the crate attributes to enable
143
+ = help: add `#![feature(intrinsics )]` to the crate attributes to enable
144
144
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
145
145
146
146
error[E0658]: rust-call ABI is subject to change
@@ -165,11 +165,11 @@ LL | extern "rust-intrinsic" {}
165
165
error[E0658]: platform intrinsics are experimental and possibly buggy
166
166
--> $DIR/feature-gate-abi.rs:61:8
167
167
|
168
- LL | extern "platform- intrinsic" {}
168
+ LL | extern "intrinsic" {}
169
169
| ^^^^^^^^^^^^^^^^^^^^
170
170
|
171
171
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
172
- = help: add `#![feature(platform_intrinsics )]` to the crate attributes to enable
172
+ = help: add `#![feature(intrinsics )]` to the crate attributes to enable
173
173
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
174
174
175
175
error[E0658]: rust-call ABI is subject to change
@@ -193,7 +193,7 @@ LL | extern "rust-intrinsic" fn f1() {}
193
193
error[E0093]: unrecognized intrinsic function: `f2`
194
194
--> $DIR/feature-gate-abi.rs:18:32
195
195
|
196
- LL | extern "platform- intrinsic" fn f2() {}
196
+ LL | extern "intrinsic" fn f2() {}
197
197
| ^^ unrecognized intrinsic
198
198
|
199
199
= help: if you're adding an intrinsic, be sure to update `check_intrinsic_type`
@@ -207,7 +207,7 @@ LL | extern "rust-intrinsic" fn m1();
207
207
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
208
208
--> $DIR/feature-gate-abi.rs:27:36
209
209
|
210
- LL | extern "platform- intrinsic" fn m2();
210
+ LL | extern "intrinsic" fn m2();
211
211
| ^^
212
212
213
213
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
@@ -219,7 +219,7 @@ LL | extern "rust-intrinsic" fn f1() {}
219
219
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
220
220
--> $DIR/feature-gate-abi.rs:18:37
221
221
|
222
- LL | extern "platform- intrinsic" fn f2() {}
222
+ LL | extern "intrinsic" fn f2() {}
223
223
| ^^
224
224
225
225
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
@@ -231,7 +231,7 @@ LL | extern "rust-intrinsic" fn m1() {}
231
231
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
232
232
--> $DIR/feature-gate-abi.rs:40:41
233
233
|
234
- LL | extern "platform- intrinsic" fn m2() {}
234
+ LL | extern "intrinsic" fn m2() {}
235
235
| ^^
236
236
237
237
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
@@ -243,7 +243,7 @@ LL | extern "rust-intrinsic" fn im1() {}
243
243
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
244
244
--> $DIR/feature-gate-abi.rs:49:42
245
245
|
246
- LL | extern "platform- intrinsic" fn im2() {}
246
+ LL | extern "intrinsic" fn im2() {}
247
247
| ^^
248
248
249
249
error: aborting due to 29 previous errors
0 commit comments