From 71b7322440aaba17a163bcb962e5c8cb07239725 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Sun, 22 Oct 2023 18:35:14 +1100 Subject: [PATCH] Fix comment: coverage-map tests compile to LLVM IR, not MIR --- src/tools/compiletest/src/runtest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 8ce00e00b57..ac270a1f0ba 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -2470,7 +2470,7 @@ fn make_compile_args( } CoverageMap => { rustc.arg("-Cinstrument-coverage"); - // These tests only compile to MIR, so they don't need the + // These tests only compile to LLVM IR, so they don't need the // profiler runtime to be present. rustc.arg("-Zno-profiler-runtime"); // Coverage mappings are sensitive to MIR optimizations, and