Skip to content

Commit

Permalink
Version 119 (#6910)
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken authored Sep 5, 2024
1 parent a640374 commit 5fca527
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ full changeset diff at the end of each section.
Current Trunk
-------------

v119
----

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


v118
----
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.10.2)
# to reduce this for compatability with emsdk.
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14" CACHE STRING "Minimum OS X deployment version")

project(binaryen LANGUAGES C CXX VERSION 118)
project(binaryen LANGUAGES C CXX VERSION 119)
include(GNUInstallDirs)

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

0 comments on commit 5fca527

Please sign in to comment.