diff options
Diffstat (limited to 'src/passes/InstrumentLocals.cpp')
-rw-r--r-- | src/passes/InstrumentLocals.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/passes/InstrumentLocals.cpp b/src/passes/InstrumentLocals.cpp index f582004d5..a1835eb64 100644 --- a/src/passes/InstrumentLocals.cpp +++ b/src/passes/InstrumentLocals.cpp @@ -20,22 +20,22 @@ // gets: // // Before: -// (get_local $x) +// (local.get $x) // // After: // (call $get_TYPE // (i32.const n) // call id // (i32.const n) // local id -// (get_local $x) +// (local.get $x) // ) // // sets: // // Before: -// (set_local $x (i32.const 1)) +// (local.set $x (i32.const 1)) // // After: -// (set_local $x +// (local.set $x // (call $set_TYPE // (i32.const n) // call id // (i32.const n) // local id |