Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Fix duplicate floatdisf symbol on Windows MSVC
  • Loading branch information
alexcrichton committed May 2, 2019
commit 80a998df921f572891107a51f47226e7b6858269
1 change: 1 addition & 0 deletions src/float/conv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ intrinsics! {
#[use_c_shim_if(any(
all(target_arch = "x86", not(target_env = "msvc")),
all(target_arch = "x86_64", not(windows)),
all(target_arch = "x86_64", target_env = "msvc"),
))]
#[arm_aeabi_alias = __aeabi_l2f]
pub extern "C" fn __floatdisf(i: i64) -> f32 {
Expand Down