Skip to content

Commit fb86979

Browse files
committed
Replace TODO to FIXME
1 parent ff45737 commit fb86979

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/intrinsic/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ impl<'a, 'gcc, 'tcx> IntrinsicCallBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tc
206206
&args.iter().map(|arg| arg.immediate()).collect::<Vec<_>>(),
207207
)
208208
}
209-
// TODO(antoyo): We can probably remove these and use the fallback intrinsic implementation.
209+
// FIXME(antoyo): We can probably remove these and use the fallback intrinsic implementation.
210210
sym::minimumf32 | sym::minimumf64 | sym::maximumf32 | sym::maximumf64 => {
211211
let (ty, func_name) = match name {
212212
sym::minimumf32 => (self.cx.float_type, "fminimumf"),

tests/lang_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn compile_and_run_cmds(
1919
// Test command 2: run `tempdir/x`.
2020
if test_target.is_some() {
2121
let mut env_path = std::env::var("PATH").unwrap_or_default();
22-
// TODO(antoyo): find a better way to add the PATH necessary locally.
22+
// FIXME(antoyo): find a better way to add the PATH necessary locally.
2323
env_path = format!("/opt/m68k-unknown-linux-gnu/bin:{}", env_path);
2424
compiler.env("PATH", env_path);
2525

@@ -112,7 +112,7 @@ fn build_test_runner(
112112

113113
println!("=== {test_kind} tests ===");
114114

115-
// TODO(antoyo): find a way to send this via a cli argument.
115+
// FIXME(antoyo): find a way to send this via a cli argument.
116116
let test_target = std::env::var("CG_GCC_TEST_TARGET").ok();
117117
let test_target_filter = test_target.clone();
118118

0 commit comments

Comments
 (0)