We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8cdbd commit b17cbd3Copy full SHA for b17cbd3
src/tools/miri/src/bin/miri.rs
@@ -167,7 +167,10 @@ fn run_many_seeds(
167
}
168
169
170
-fn make_codegen_backend(opts: &Options, target: &Target) -> Box<dyn CodegenBackend> {
+/// Generates the codegen backend for code that Miri will interpret: we basically
171
+/// use the dummy backend, except that we put the LLVM backend in charge of
172
+/// target features.
173
+fn make_miri_codegen_backend(opts: &Options, target: &Target) -> Box<dyn CodegenBackend> {
174
let early_dcx = EarlyDiagCtxt::new(opts.error_format);
175
176
// Use the target_config method of the default codegen backend (eg LLVM) to ensure the
0 commit comments