diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-05-19 15:40:23 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-05-19 15:46:18 -0700 |
commit | fe1bda7da797e5586d39122aec931a8a84df4ac7 (patch) | |
tree | ee056db222a948610839ae204e0311b0854c36fe /test/unit.fromasm | |
parent | 322e89791721ce5130242c87eb1c01163f0ad21d (diff) | |
download | binaryen-fe1bda7da797e5586d39122aec931a8a84df4ac7.tar.gz binaryen-fe1bda7da797e5586d39122aec931a8a84df4ac7.tar.bz2 binaryen-fe1bda7da797e5586d39122aec931a8a84df4ac7.zip |
vacuum after passes that create garbage; this makes the total time better
Diffstat (limited to 'test/unit.fromasm')
-rw-r--r-- | test/unit.fromasm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/unit.fromasm b/test/unit.fromasm index 74ef9b968..a3a4dd189 100644 --- a/test/unit.fromasm +++ b/test/unit.fromasm @@ -233,17 +233,13 @@ ) ) (func $fr (param $0 f32) - (local $1 f64) (nop) ) (func $negZero (result f64) (f64.const -0) ) (func $abs - (local $0 i32) - (set_local $0 - (i32.const 0) - ) + (i32.const 0) ) (func $neg (local $0 f32) @@ -378,7 +374,6 @@ ) ) (func $bitcasts (param $0 i32) (param $1 f32) - (local $2 f64) (nop) ) (func $z |