diff options
| author | Rich Felker <dalias@aerifal.cx> | 2026-03-21 15:14:41 -0400 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2026-03-21 15:14:41 -0400 |
| commit | 3df932bc33a5f1ae56636abfd4241e34d5c648db (patch) | |
| tree | faeb59bbf713b705057d38a7d375ce277c616186 /src/fenv/riscv64/fenv.S | |
| parent | 1969500402bc4f80452e1c066401223a3c998f54 (diff) | |
| download | musl-3df932bc33a5f1ae56636abfd4241e34d5c648db.tar.gz | |
fix condition for riscv{32,64} non-stup fenv
whether fenv is supported depends on the ABI, not whether the target
cpu ISA level has floating point support.
Diffstat (limited to 'src/fenv/riscv64/fenv.S')
| -rw-r--r-- | src/fenv/riscv64/fenv.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fenv/riscv64/fenv.S b/src/fenv/riscv64/fenv.S index 0ea78bf9..1deab07f 100644 --- a/src/fenv/riscv64/fenv.S +++ b/src/fenv/riscv64/fenv.S @@ -1,4 +1,4 @@ -#ifdef __riscv_flen +#ifndef __riscv_float_abi_soft .global feclearexcept .type feclearexcept, %function |
