Skip to content

Commit 8f9d765

Browse files
committed
Add simd_relaxed_fma intrinsic
1 parent 329cd79 commit 8f9d765

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/intrinsics/simd.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,8 @@ pub(super) fn codegen_simd_intrinsic_call<'tcx>(
415415
});
416416
}
417417

418-
sym::simd_fma => {
418+
// FIXME: simd_relaxed_fma doesn't relax to non-fused multiply-add
419+
sym::simd_fma | sym::simd_relaxed_fma => {
419420
intrinsic_args!(fx, args => (a, b, c); intrinsic);
420421

421422
if !a.layout().ty.is_simd() {

0 commit comments

Comments
 (0)