about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/mod.rs
diff options
context:
space:
mode:
authorOli Scherer <github333195615777966@oli-obk.de>2025-06-21 17:33:55 +0000
committerOli Scherer <github333195615777966@oli-obk.de>2025-06-30 08:04:40 +0000
commitd37a04d09da8edb0d83ee5de30f2fa8db1758a85 (patch)
tree76719e6946867fda5ab94be4222be78c9977cc72 /compiler/rustc_const_eval/src/interpret/mod.rs
parent672e0bec9edfb174c93edafcfe46a8fa3c05c931 (diff)
downloadrust-d37a04d09da8edb0d83ee5de30f2fa8db1758a85.tar.gz
rust-d37a04d09da8edb0d83ee5de30f2fa8db1758a85.zip
Remove the nullary intrinsic const eval logic and treat them like other intrinsics
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret/mod.rs')
-rw-r--r--compiler/rustc_const_eval/src/interpret/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/mod.rs b/compiler/rustc_const_eval/src/interpret/mod.rs
index f5792aba207..f8b3c92debb 100644
--- a/compiler/rustc_const_eval/src/interpret/mod.rs
+++ b/compiler/rustc_const_eval/src/interpret/mod.rs
@@ -29,7 +29,6 @@ pub use self::intern::{
     HasStaticRootDefId, InternKind, InternResult, intern_const_alloc_for_constprop,
     intern_const_alloc_recursive,
 };
-pub(crate) use self::intrinsics::eval_nullary_intrinsic;
 pub use self::machine::{AllocMap, Machine, MayLeak, ReturnAction, compile_time_machine};
 pub use self::memory::{AllocInfo, AllocKind, AllocRef, AllocRefMut, FnVal, Memory, MemoryKind};
 use self::operand::Operand;