diff options
Diffstat (limited to 'test/min.fromasm')
-rw-r--r-- | test/min.fromasm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/test/min.fromasm b/test/min.fromasm index 45b2f8c19..51750dd53 100644 --- a/test/min.fromasm +++ b/test/min.fromasm @@ -10,15 +10,13 @@ ) ) (func $neg (param $0 i32) (param $1 i32) (result f32) + (i32.store + (get_local $0) + (get_local $1) + ) (f32.neg - (block - (i32.store - (get_local $0) - (get_local $1) - ) - (f32.load - (get_local $0) - ) + (f32.load + (get_local $0) ) ) ) |