diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-02 15:08:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-02 15:08:14 -0700 |
commit | d2f7d4db6ef38b6653cb2b0ef115b8282d825673 (patch) | |
tree | a18364fa9af1d98440f3f66d99f936492de1e6d3 /build-js.sh | |
parent | b192c53c6ef549bb5264bc58a71424ce311a4890 (diff) | |
parent | d988bff19c7905bd992fd726288d4927d377ec2e (diff) | |
download | binaryen-d2f7d4db6ef38b6653cb2b0ef115b8282d825673.tar.gz binaryen-d2f7d4db6ef38b6653cb2b0ef115b8282d825673.tar.bz2 binaryen-d2f7d4db6ef38b6653cb2b0ef115b8282d825673.zip |
Directize: turns indirect calls into direct ones (#1974)
* wip [ci skip]
* works
* test output
* test update
* js build
* better location for running directize
Diffstat (limited to 'build-js.sh')
-rwxr-xr-x | build-js.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build-js.sh b/build-js.sh index cfcb914ef..192ef662a 100755 --- a/build-js.sh +++ b/build-js.sh @@ -98,6 +98,7 @@ echo "building shared bitcode" $BINARYEN_SRC/passes/ConstHoisting.cpp \ $BINARYEN_SRC/passes/DataFlowOpts.cpp \ $BINARYEN_SRC/passes/DeadCodeElimination.cpp \ + $BINARYEN_SRC/passes/Directize.cpp \ $BINARYEN_SRC/passes/DuplicateFunctionElimination.cpp \ $BINARYEN_SRC/passes/ExtractFunction.cpp \ $BINARYEN_SRC/passes/Flatten.cpp \ |