diff options
| author | Ralf Jung <post@ralfj.de> | 2023-07-10 22:07:07 +0200 | 
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2023-07-11 21:59:01 +0200 | 
| commit | dd453a6a9961a5e6377add8980cf4c257ab5a395 (patch) | |
| tree | 6d0eb839094e13580bed4ee43029ecdeb2b79258 /compiler/rustc_const_eval/src/interpret/mod.rs | |
| parent | 3ea096a28d6ebd00564869d62ece822af9743c6c (diff) | |
| download | rust-dd453a6a9961a5e6377add8980cf4c257ab5a395.tar.gz rust-dd453a6a9961a5e6377add8980cf4c257ab5a395.zip | |
miri: protect Move() function arguments during the call
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret/mod.rs')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/mod.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/compiler/rustc_const_eval/src/interpret/mod.rs b/compiler/rustc_const_eval/src/interpret/mod.rs index 898d62361ab..f657f954f9c 100644 --- a/compiler/rustc_const_eval/src/interpret/mod.rs +++ b/compiler/rustc_const_eval/src/interpret/mod.rs @@ -26,6 +26,7 @@ pub use self::machine::{compile_time_machine, AllocMap, Machine, MayLeak, StackP pub use self::memory::{AllocKind, AllocRef, AllocRefMut, FnVal, Memory, MemoryKind}; pub use self::operand::{ImmTy, Immediate, OpTy, Operand}; pub use self::place::{MPlaceTy, MemPlace, MemPlaceMeta, Place, PlaceTy}; +pub use self::terminator::FnArg; pub use self::validity::{CtfeValidationMode, RefTracking}; pub use self::visitor::{MutValueVisitor, Value, ValueVisitor}; | 
