Rollup merge of #114363 - RalfJung:interpret-not-miri, r=jackh726
avoid 'miri' when refering to the shared interpreter This is basically the rustc source code version of https://github.com/rust-lang/rustc-dev-guide/pull/1471.
This commit is contained in:
commit
01fdb9d148
6 changed files with 13 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
|||
//! Intrinsics and other functions that the miri engine executes without
|
||||
//! Intrinsics and other functions that the interpreter executes without
|
||||
//! looking at their MIR. Intrinsics/functions supported here are shared by CTFE
|
||||
//! and miri.
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@ impl<'tcx, Other> FnVal<'tcx, Other> {
|
|||
// `Memory` has to depend on the `Machine` because some of its operations
|
||||
// (e.g., `get`) call a `Machine` hook.
|
||||
pub struct Memory<'mir, 'tcx, M: Machine<'mir, 'tcx>> {
|
||||
/// Allocations local to this instance of the miri engine. The kind
|
||||
/// Allocations local to this instance of the interpreter. The kind
|
||||
/// helps ensure that the same mechanism is used for allocation and
|
||||
/// deallocation. When an allocation is not found here, it is a
|
||||
/// global and looked up in the `tcx` for read access. Some machines may
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue