about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/validity.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-07-02 21:05:22 +0200
committerRalf Jung <post@ralfj.de>2024-07-02 21:05:30 +0200
commit41b98da42d0500e38b9dd85c82110ba177ac4de1 (patch)
tree715c5787c45f093f51c827775a67240ff8f82727 /compiler/rustc_const_eval/src/interpret/validity.rs
parent7d97c59438e933e86f557ed999da3b8dfc6855a7 (diff)
downloadrust-41b98da42d0500e38b9dd85c82110ba177ac4de1.tar.gz
rust-41b98da42d0500e38b9dd85c82110ba177ac4de1.zip
Miri function identity hack: account for possible inlining
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret/validity.rs')
-rw-r--r--compiler/rustc_const_eval/src/interpret/validity.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/validity.rs b/compiler/rustc_const_eval/src/interpret/validity.rs
index add48e1b186..7fea0617666 100644
--- a/compiler/rustc_const_eval/src/interpret/validity.rs
+++ b/compiler/rustc_const_eval/src/interpret/validity.rs
@@ -745,7 +745,7 @@ fn mutability<'tcx>(ecx: &InterpCx<'tcx, impl Machine<'tcx>>, alloc_id: AllocId)
             }
         }
         GlobalAlloc::Memory(alloc) => alloc.inner().mutability,
-        GlobalAlloc::Function(..) | GlobalAlloc::VTable(..) => {
+        GlobalAlloc::Function { .. } | GlobalAlloc::VTable(..) => {
             // These are immutable, we better don't allow mutable pointers here.
             Mutability::Not
         }