Skip to content

Commit 5fca527

Browse files
authored
Version 119 (WebAssembly#6910)
1 parent a640374 commit 5fca527

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ full changeset diff at the end of each section.
1515
Current Trunk
1616
-------------
1717

18+
v119
19+
----
20+
1821
- Passes can now receive individual pass arguments, that is --foo=A --foo=B for
1922
a pass foo will run the pass twice (which was possible before) and will now
2023
run it first with argument A and second with B. --pass-arg=foo@BAR will now
@@ -31,6 +34,9 @@ Current Trunk
3134
- Allow using `--skip-pass` on the commandline multiple times (#6714).
3235
- The instructions relaxed_fma and relaxed_fnma have been renamed to
3336
relaxed_madd and relaxed_nmadd.
37+
- Add a new `--heap-store-optimization` pass. (#6882)
38+
- Add a pass for minimizing recursion groups. (#6832)
39+
3440

3541
v118
3642
----

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.10.2)
77
# to reduce this for compatability with emsdk.
88
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14" CACHE STRING "Minimum OS X deployment version")
99

10-
project(binaryen LANGUAGES C CXX VERSION 118)
10+
project(binaryen LANGUAGES C CXX VERSION 119)
1111
include(GNUInstallDirs)
1212

1313
# The C++ standard whose features are required to build Binaryen.

0 commit comments

Comments
 (0)