diff options
| author | Folkert de Vries <folkert@folkertdev.nl> | 2025-04-20 20:31:01 +0200 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2025-04-23 10:38:19 +0000 |
| commit | f77386cf2b637dd0fe0873a4679e7f4c0fe473b5 (patch) | |
| tree | dc164a726a0c680f5d793b46b6b43c4ea92c08b6 /library/stdarch/crates | |
| parent | 1e3c5e3c99982639373b8fa4058b56825d0983af (diff) | |
| download | rust-f77386cf2b637dd0fe0873a4679e7f4c0fe473b5.tar.gz rust-f77386cf2b637dd0fe0873a4679e7f4c0fe473b5.zip | |
run `powerpc64le` `assert_instr` on CI
Diffstat (limited to 'library/stdarch/crates')
| -rw-r--r-- | library/stdarch/crates/core_arch/src/powerpc/altivec.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/stdarch/crates/core_arch/src/powerpc/altivec.rs b/library/stdarch/crates/core_arch/src/powerpc/altivec.rs index 0fb7ee6e1ef..3cb3f098bba 100644 --- a/library/stdarch/crates/core_arch/src/powerpc/altivec.rs +++ b/library/stdarch/crates/core_arch/src/powerpc/altivec.rs @@ -1878,7 +1878,7 @@ mod sealed { #[inline] #[target_feature(enable = "altivec")] - #[cfg_attr(test, assert_instr(vmaddfp))] + #[cfg_attr(test, assert_instr(xvmaddasp))] pub unsafe fn vec_vmaddfp(a: vector_float, b: vector_float, c: vector_float) -> vector_float { simd_fma(a, b, c) } @@ -3239,7 +3239,7 @@ mod sealed { unsafe fn vec_round(self) -> Self; } - test_impl! { vec_vrfin(a: vector_float) -> vector_float [vrfin, vrfin] } + test_impl! { vec_vrfin(a: vector_float) -> vector_float [vrfin, xvrspic] } #[unstable(feature = "stdarch_powerpc", issue = "111145")] impl VectorRound for vector_float { |
