Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LLVM opaque pointers #574

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Here are the changes from version 20210117 to YYYYMMDD.

=== Details

* 2024-08-09
** Update the LLVM codegen to generate LLVM IR using opaque
pointers; using the LLVM codegen requires LLVM 15 (or higher).

* 2024-05-22
** Optimize representation of sequences in `Useless` SSA
optimization.
Expand Down
4 changes: 4 additions & 0 deletions doc/guide/src/LLVMCodegen.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ As of 20230522, MLton requires LLVM 14, as it invokes `opt` using the
https://releases.llvm.org/14.0.0/docs/ReleaseNotes.html#changes-to-the-llvm-ir:["new
pass manager"].

As of 20240809, MLton requires LLVM 15, as it generates LLVM IR using
https://releases.llvm.org/15.0.0/docs/ReleaseNotes.html#changes-to-the-llvm-ir:["opaque
pointers"].

== Implementation

* https://github.com/MLton/mlton/blob/master/mlton/codegen/llvm-codegen/llvm-codegen.sig[`llvm-codegen.sig`]
Expand Down
Loading
Loading