Skip to content
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: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 0 additions & 27 deletions cranelift/filetests/filetests/runtests/fma-interpreter.clif

This file was deleted.

2 changes: 2 additions & 0 deletions cranelift/filetests/filetests/runtests/fma.clif
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
test interpret
test run
target aarch64
target s390x
target x86_64 has_avx=false has_fma=false

function %fma_f32(f32, f32, f32) -> f32 {
block0(v0: f32, v1: f32, v2: f32):
Expand Down
2 changes: 1 addition & 1 deletion cranelift/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ smallvec = "1.6.1"
thiserror = "1.0.15"

[target.x86_64-pc-windows-gnu.dependencies]
libm = "0.2"
libm = "0.2.4"

[dev-dependencies]
cranelift-frontend = { path = "../frontend", version = "0.88.0" }
Expand Down
10 changes: 10 additions & 0 deletions supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ criteria = "safe-to-deploy"
version = "1.0.0"
notes = "I am the author of this crate."

[[audits.libm]]
who = "Alex Crichton <alex@alexcrichton.com>"
criteria = "safe-to-deploy"
delta = "0.2.2 -> 0.2.4"
notes = """
This diff primarily fixes a few issues with the `fma`-related functions,
but also contains some other minor fixes as well. Everything looks A-OK and
as expected.
"""

[[audits.regalloc2]]
who = "Jamey Sharp <jsharp@fastly.com>"
criteria = "safe-to-deploy"
Expand Down