There was an error while loading. Please reload this page.
1 parent cd65d68 commit 424fbc1Copy full SHA for 424fbc1
1 file changed
crates/wasmi/src/engine/translator/func2/stack/operand.rs
@@ -83,9 +83,9 @@ impl Operand {
83
/// Returns the type of the [`Operand`].
84
pub fn ty(&self) -> ValType {
85
match self {
86
- Self::Local(local_operand) => local_operand.ty(),
87
- Self::Temp(temp_operand) => temp_operand.ty(),
88
- Self::Immediate(immediate_operand) => immediate_operand.ty(),
+ Self::Local(operand) => operand.ty(),
+ Self::Temp(operand) => operand.ty(),
+ Self::Immediate(operand) => operand.ty(),
89
}
90
91
0 commit comments