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 1422e26 commit 4e5db2fCopy full SHA for 4e5db2f
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