Skip to content

Commit c4a8355

Browse files
committed
Change TODO in compiler to FIXME
1 parent 3c00f7d commit c4a8355

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/test_rustc_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort
175175

176176
# bugs in the test suite
177177
# ======================
178-
rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue
178+
rm tests/ui/process/nofile-limit.rs # FIXME some AArch64 linking issue
179179
rm -r tests/ui/codegen/equal-pointers-unequal # make incorrect assumptions about the location of stack variables
180180
rm -r tests/incremental/extern_static/issue-49153.rs # assumes reference to undefined static gets optimized away
181181

src/intrinsics/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,10 +356,10 @@ fn codegen_float_intrinsic_call<'tcx>(
356356
sym::fmaf64 => ("fma", 3, fx.tcx.types.f64, types::F64),
357357
sym::fmaf128 => ("fmaf128", 3, fx.tcx.types.f128, types::F128),
358358
// FIXME: calling `fma` from libc without FMA target feature uses expensive sofware emulation
359-
sym::fmuladdf16 => ("fmaf16", 3, fx.tcx.types.f16, types::F16), // TODO: use cranelift intrinsic analogous to llvm.fmuladd.f16
360-
sym::fmuladdf32 => ("fmaf", 3, fx.tcx.types.f32, types::F32), // TODO: use cranelift intrinsic analogous to llvm.fmuladd.f32
361-
sym::fmuladdf64 => ("fma", 3, fx.tcx.types.f64, types::F64), // TODO: use cranelift intrinsic analogous to llvm.fmuladd.f64
362-
sym::fmuladdf128 => ("fmaf128", 3, fx.tcx.types.f128, types::F128), // TODO: use cranelift intrinsic analogous to llvm.fmuladd.f128
359+
sym::fmuladdf16 => ("fmaf16", 3, fx.tcx.types.f16, types::F16), // FIXME: use cranelift intrinsic analogous to llvm.fmuladd.f16
360+
sym::fmuladdf32 => ("fmaf", 3, fx.tcx.types.f32, types::F32), // FIXME: use cranelift intrinsic analogous to llvm.fmuladd.f32
361+
sym::fmuladdf64 => ("fma", 3, fx.tcx.types.f64, types::F64), // FIXME: use cranelift intrinsic analogous to llvm.fmuladd.f64
362+
sym::fmuladdf128 => ("fmaf128", 3, fx.tcx.types.f128, types::F128), // FIXME: use cranelift intrinsic analogous to llvm.fmuladd.f128
363363
sym::copysignf16 => ("copysignf16", 2, fx.tcx.types.f16, types::F16),
364364
sym::copysignf32 => ("copysignf", 2, fx.tcx.types.f32, types::F32),
365365
sym::copysignf64 => ("copysign", 2, fx.tcx.types.f64, types::F64),

0 commit comments

Comments
 (0)