Skip to content

Commit bfd5b5c

Browse files
committed
fixup! Add support for f128 integer exponentiation
1 parent b4ca70e commit bfd5b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testcrate/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ macro_rules! apfloat_fallback {
342342
// `__multf3` is now available in nightly, but `__divtf3` is not yet. Provide a fallback until
343343
// that happens.
344344
#[no_mangle]
345-
// #[cfg(target_env = "msvc")]
345+
#[cfg(target_env = "msvc")]
346346
pub extern "C" fn __divtf3(a: f128, b: f128) -> f128 {
347347
compiler_builtins::float::div::__divtf3(a, b)
348348
}

0 commit comments

Comments
 (0)