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

Fix unused link_name attribute. #1251

Merged
merged 1 commit into from
Nov 13, 2021
Merged
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
Fix unused link_name attribute.
  • Loading branch information
ehuss committed Nov 13, 2021
commit 19b5cb40fe15dfaa9e644571a46c4beae31ce63e
2 changes: 1 addition & 1 deletion crates/core_arch/src/mips/msa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@ extern "C" {
fn msa_fexp2_w(a: v4f32, b: v4i32) -> v4f32;
#[link_name = "llvm.mips.fexp2.d"]
fn msa_fexp2_d(a: v2f64, b: v2i64) -> v2f64;
#[link_name = "llvm.mips.fexupl.w"]
// FIXME: 16-bit floats
// #[link_name = "llvm.mips.fexupl.w"]
// fn msa_fexupl_w(a: f16x8) -> v4f32;
#[link_name = "llvm.mips.fexupl.d"]
fn msa_fexupl_d(a: v4f32) -> v2f64;
Expand Down