kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

local_zero_tee.wat (170B)


      1 (module
      2   (func (export "test_main") (result i32)
      3     (local $a i32)
      4     (local $b i64)
      5     local.get $a
      6     i64.const 42
      7     local.tee $b
      8     i32.wrap_i64
      9     i32.add))