Skip to content

Commit fc03b77

Browse files
committed
Add __powitf2 symbol for f128 powi
1 parent 449643f commit fc03b77

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ These builtins are needed to support `f16` and `f128`, which are in the process
250250
- [ ] floatunditf.c
251251
- [ ] floatunsitf.c
252252
- [x] multf3.c
253-
- [ ] powitf2.c
253+
- [x] powitf2.c
254254
- [ ] ppc/fixtfdi.c
255255
- [ ] ppc/fixunstfdi.c
256256
- [ ] ppc/floatditf.c

build.rs

-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,6 @@ mod c {
544544
("__floatunditf", "floatunditf.c"),
545545
("__floatunsitf", "floatunsitf.c"),
546546
("__divtf3", "divtf3.c"),
547-
("__powitf2", "powitf2.c"),
548547
("__fe_getround", "fp_mode.c"),
549548
("__fe_raise_inexact", "fp_mode.c"),
550549
]);

src/float/pow.rs

+6
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,10 @@ intrinsics! {
3535
pub extern "C" fn __powidf2(a: f64, b: i32) -> f64 {
3636
pow(a, b)
3737
}
38+
39+
#[avr_skip]
40+
#[cfg(not(feature = "no-f16-f128"))]
41+
pub extern "C" fn __powitf2(a: f128, b: i32) -> f128 {
42+
pow(a, b)
43+
}
3844
}

testcrate/tests/misc.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// makes configuration easier
22
#![allow(unused_macros)]
3+
#![feature(f128)]
34

45
use testcrate::*;
56

@@ -96,7 +97,7 @@ fn leading_zeros() {
9697
// https://github.com/rust-lang/rust/issues/73920.
9798
// TODO how do we resolve this indeterminacy?
9899
macro_rules! pow {
99-
($($f:ty, $tolerance:expr, $fn:ident);*;) => {
100+
($($f:ty, $tolerance:expr, $fn:ident);* ;) => {
100101
$(
101102
fuzz_float_2(N, |x: $f, y: $f| {
102103
if !(Float::is_subnormal(x) || Float::is_subnormal(y) || x.is_nan()) {
@@ -123,7 +124,7 @@ macro_rules! pow {
123124
};
124125
if !good {
125126
panic!(
126-
"{}({}, {}): std: {}, builtins: {}",
127+
"{}({:?}, {:?}): std: {:?}, builtins: {:?}",
127128
stringify!($fn), x, n, tmp0, tmp1
128129
);
129130
}
@@ -143,4 +144,11 @@ fn float_pow() {
143144
f32, 1e-4, __powisf2;
144145
f64, 1e-12, __powidf2;
145146
);
147+
148+
#[cfg(not(feature = "no-f16-f128"))]
149+
{
150+
use compiler_builtins::float::pow::__powitf2;
151+
152+
pow!(f128, 1e-24, __powitf2;);
153+
}
146154
}

0 commit comments

Comments
 (0)