Skip to content

Commit 380fcb7

Browse files
committed
wip: issue/88
1 parent cccf750 commit 380fcb7

File tree

2 files changed

+88
-68
lines changed

2 files changed

+88
-68
lines changed

crates/lean_compiler/src/a_simplify_lang.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2042,7 +2042,7 @@ impl SimpleLine {
20422042
format!("{result} = counter_hint()")
20432043
}
20442044
Self::RawAccess { res, index, shift } => {
2045-
format!("memory[{index} + {shift}] = {res}")
2045+
format!("{res} = memory[{index} + {shift}]")
20462046
}
20472047
Self::TestZero { operation, arg0, arg1 } => {
20482048
format!("0 = {arg0} {operation} {arg1}")

0 commit comments

Comments
 (0)