|
1 |
| -mir_transform_abi_error_disabled_vector_type = |
2 |
| - this function {$is_call -> |
3 |
| - [true] call |
4 |
| - *[false] definition |
5 |
| - } uses SIMD vector type `{$ty}` which (with the chosen ABI) requires the `{$required_feature}` target feature, which is not enabled{$is_call -> |
6 |
| - [true] {" "}in the caller |
7 |
| - *[false] {""} |
8 |
| - } |
9 |
| - .label = function {$is_call -> |
10 |
| - [true] called |
11 |
| - *[false] defined |
12 |
| - } here |
13 |
| - .help = consider enabling it globally (`-C target-feature=+{$required_feature}`) or locally (`#[target_feature(enable="{$required_feature}")]`) |
14 |
| -
|
15 |
| -mir_transform_abi_error_unsupported_vector_type = |
16 |
| - this function {$is_call -> |
17 |
| - [true] call |
18 |
| - *[false] definition |
19 |
| - } uses SIMD vector type `{$ty}` which is not currently supported with the chosen ABI |
20 |
| - .label = function {$is_call -> |
21 |
| - [true] called |
22 |
| - *[false] defined |
23 |
| - } here |
24 |
| -
|
25 |
| -mir_transform_abi_required_target_feature = |
26 |
| - this function {$is_call -> |
27 |
| - [true] call |
28 |
| - *[false] definition |
29 |
| - } uses ABI "{$abi}" which requires the `{$required_feature}` target feature, which is not enabled{$is_call -> |
30 |
| - [true] {" "}in the caller |
31 |
| - *[false] {""} |
32 |
| - } |
33 |
| - .label = function {$is_call -> |
34 |
| - [true] called |
35 |
| - *[false] defined |
36 |
| - } here |
37 |
| - .help = consider enabling it globally (`-C target-feature=+{$required_feature}`) or locally (`#[target_feature(enable="{$required_feature}")]`) |
38 |
| -
|
39 | 1 | mir_transform_arithmetic_overflow = this arithmetic operation will overflow
|
40 | 2 | mir_transform_const_defined_here = `const` item defined here
|
41 | 3 |
|
@@ -74,11 +36,6 @@ mir_transform_force_inline_attr =
|
74 | 36 | mir_transform_force_inline_justification =
|
75 | 37 | `{$callee}` is required to be inlined to: {$sym}
|
76 | 38 |
|
77 |
| -mir_transform_large_assignments = |
78 |
| - moving {$size} bytes |
79 |
| - .label = value moved from here |
80 |
| - .note = The current maximum size is {$limit}, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]` |
81 |
| -
|
82 | 39 | mir_transform_must_not_suspend = {$pre}`{$def_path}`{$post} held across a suspend point, but should not be
|
83 | 40 | .label = the value is held across this suspend point
|
84 | 41 | .note = {$reason}
|
@@ -122,12 +79,3 @@ mir_transform_unconditional_recursion = function cannot return without recursing
|
122 | 79 | mir_transform_unconditional_recursion_call_site_label = recursive call site
|
123 | 80 |
|
124 | 81 | mir_transform_unknown_pass_name = MIR pass `{$name}` is unknown and will be ignored
|
125 |
| -
|
126 |
| -mir_transform_unnecessary_transmute = unnecessary transmute |
127 |
| -
|
128 |
| -mir_transform_wasm_c_abi_transition = |
129 |
| - this function {$is_call -> |
130 |
| - [true] call |
131 |
| - *[false] definition |
132 |
| - } involves an argument of type `{$ty}` which is affected by the wasm ABI transition |
133 |
| - .help = the "C" ABI Rust uses on wasm32-unknown-unknown will change to align with the standard "C" ABI for this target |
0 commit comments