about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-02-11 01:37:56 +0100
committerGitHub <noreply@github.com>2024-02-11 01:37:56 +0100
commit09bbcd6667631e31c63e9f8d1c930e2bab5ebeb3 (patch)
tree3dd2836d5ffdfc3c422abb9c54688f5c06842fea /compiler/rustc_const_eval/src/interpret
parente82e087582112a4a6082afc9b826392438a8b324 (diff)
parentd56f3b6a5ddbdf6af0c2fb6b7a8327d698e2e228 (diff)
downloadrust-09bbcd6667631e31c63e9f8d1c930e2bab5ebeb3.tar.gz
rust-09bbcd6667631e31c63e9f8d1c930e2bab5ebeb3.zip
Rollup merge of #120883 - RalfJung:extern-static-err, r=oli-obk
interpret: rename ReadExternStatic → ExternStatic

This error shows up for reads and writes, so `ReadExternStatic` is misleading.
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret')
-rw-r--r--compiler/rustc_const_eval/src/interpret/memory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/memory.rs b/compiler/rustc_const_eval/src/interpret/memory.rs
index 38ad8cbf3a6..4acf4ed893c 100644
--- a/compiler/rustc_const_eval/src/interpret/memory.rs
+++ b/compiler/rustc_const_eval/src/interpret/memory.rs
@@ -557,7 +557,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
                 if self.tcx.is_foreign_item(def_id) {
                     // This is unreachable in Miri, but can happen in CTFE where we actually *do* support
                     // referencing arbitrary (declared) extern statics.
-                    throw_unsup!(ReadExternStatic(def_id));
+                    throw_unsup!(ExternStatic(def_id));
                 }
 
                 // We don't give a span -- statics don't need that, they cannot be generic or associated.