Skip to content

Commit dde7d66

Browse files
committedSep 15, 2024
Auto merge of rust-lang#130390 - matthiaskrgr:rollup-evbfwe2, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - rust-lang#129195 (Stabilize `&mut` (and `*mut`) as well as `&Cell` (and `*const Cell`) in const) - rust-lang#130118 (move Option::unwrap_unchecked into const_option feature gate) - rust-lang#130295 (Fix target-cpu fpu features on Armv8-R.) - rust-lang#130371 (Correctly account for niche-optimized tags in rustc_transmute) - rust-lang#130381 (library: Compute Rust exception class from its string repr) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 1ae2688 + 729aa49 commit dde7d66

File tree

181 files changed

+426
-1738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+426
-1738
lines changed
 

‎compiler/rustc_const_eval/messages.ftl

-10
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,6 @@ const_eval_incompatible_return_types =
134134
const_eval_incompatible_types =
135135
calling a function with argument of type {$callee_ty} passing data of type {$caller_ty}
136136
137-
const_eval_interior_mutability_borrow =
138-
cannot borrow here, since the borrowed element may contain interior mutability
139-
140137
const_eval_interior_mutable_data_refer =
141138
{const_eval_const_context}s cannot refer to interior mutable data
142139
.label = this borrow of an interior mutable value may end up in the final value
@@ -230,9 +227,6 @@ const_eval_memory_exhausted =
230227
const_eval_modified_global =
231228
modifying a static's initial value from another static's initializer
232229
233-
const_eval_mut_deref =
234-
mutation through a reference is not allowed in {const_eval_const_context}s
235-
236230
const_eval_mutable_ptr_in_final = encountered mutable pointer in final value of {const_eval_intern_kind}
237231
238232
const_eval_nested_static_in_thread_local = #[thread_local] does not support implicit nested statics, please create explicit static items and refer to them instead
@@ -363,10 +357,6 @@ const_eval_too_generic =
363357
const_eval_too_many_caller_args =
364358
calling a function with more arguments than it expected
365359
366-
const_eval_transient_mut_borrow = mutable references are not allowed in {const_eval_const_context}s
367-
368-
const_eval_transient_mut_raw = raw mutable pointers are not allowed in {const_eval_const_context}s
369-
370360
const_eval_try_block_from_output_non_const =
371361
`try` block cannot convert `{$ty}` to the result in {const_eval_const_context}s
372362
const_eval_unallowed_fn_pointer_call = function pointer calls are not allowed in {const_eval_const_context}s

‎compiler/rustc_const_eval/src/check_consts/check.rs

+25-229
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)