We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7354e28 commit 4497818Copy full SHA for 4497818
crates/wasmi/src/engine/translator/func/instrs.rs
@@ -24,8 +24,10 @@ use alloc::vec::{self, Vec};
24
pub struct OpEncoder {
25
/// The last pushed [`Op`].
26
///
27
- /// This is special in that it allows being peeked and manipulated.
28
- /// This is useful to perform op-code fusion or adjusting the result slot.
+ /// # Note
+ ///
29
+ /// - This allows the last [`Op`] to be peeked and manipulated.
30
+ /// - For example, this is useful to perform op-code fusion or adjusting the result slot.
31
last: Option<Instr>,
32
/// The fuel costs of instructions.
33
0 commit comments