diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-10-14 17:27:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-14 17:27:08 -0700 |
commit | 16b9087e17effc544d82a69b93de17d8f8c979e2 (patch) | |
tree | bbe8ecd3cafa9c69c5750bba5414845f9146f25a /test/unit.asm.js | |
parent | 58f7d6cd477701d7fb4c87ffa9e795ddc6423abb (diff) | |
parent | 5881b541a4b276dcd5576aa065e4fb860531fc7b (diff) | |
download | binaryen-16b9087e17effc544d82a69b93de17d8f8c979e2.tar.gz binaryen-16b9087e17effc544d82a69b93de17d8f8c979e2.tar.bz2 binaryen-16b9087e17effc544d82a69b93de17d8f8c979e2.zip |
Merge pull request #778 from WebAssembly/passe
Add remove-unused-functions to default passes
Diffstat (limited to 'test/unit.asm.js')
-rw-r--r-- | test/unit.asm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit.asm.js b/test/unit.asm.js index c3adb2a3a..949d68dcb 100644 --- a/test/unit.asm.js +++ b/test/unit.asm.js @@ -605,6 +605,6 @@ function asm(global, env, buffer) { var FUNCTION_TABLE_b = [ w, w, importedDoubles, w ]; var FUNCTION_TABLE_c = [ z, cneg ]; - return { big_negative: big_negative, pick: forgetMe, pick: exportMe }; + return { big_negative: big_negative, pick: forgetMe, pick: exportMe, doubleCompares: doubleCompares, intOps: intOps, conversions: conversions, switcher: switcher, frem: frem, big_uint_div_u: big_uint_div_u, fr: fr, negZero: negZero, neg: neg, smallCompare: smallCompare, cneg_nosemicolon: cneg_nosemicolon, forLoop: forLoop, ceiling_32_64: ceiling_32_64, aborts: aborts, continues: continues, bitcasts: bitcasts, recursiveBlockMerging: recursiveBlockMerging, lb: lb, zeroInit: zeroInit, phi: phi, smallIf: smallIf, dropCall: dropCall, useSetGlobal: useSetGlobal, usesSetGlobal2: usesSetGlobal2, breakThroughMany: breakThroughMany, ifChainEmpty: ifChainEmpty, heap8NoShift: heap8NoShift, conditionalTypeFun: conditionalTypeFun, loadSigned: loadSigned, globalOpts: globalOpts, dropCallImport: dropCallImport, loophi: loophi, loophi2: loophi2, relooperJumpThreading: relooperJumpThreading, relooperJumpThreading__ZN4game14preloadweaponsEv: relooperJumpThreading__ZN4game14preloadweaponsEv, __Z12multi_varargiz: __Z12multi_varargiz, jumpThreadDrop: jumpThreadDrop, dropIgnoredImportInIf: dropIgnoredImportInIf, dropIgnoredImportsInIf: dropIgnoredImportsInIf }; } |