Rollup merge of #97752 - klensy:cg-typo, r=bjorn3

typo: `-Zcodegen-backend=llvm -Cpasses=list` should work now

r? ```@bjorn3```
This commit is contained in:
Matthias Krüger 2022-06-06 08:37:02 +02:00 committed by GitHub
commit c9c6c2e7de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1055,13 +1055,7 @@ pub fn handle_options(args: &[String]) -> Option<getopts::Matches> {
}
if cg_flags.iter().any(|x| *x == "passes=list") {
let backend_name = debug_flags.iter().find_map(|x| {
if x.starts_with("codegen-backend=") {
Some(&x["codegen-backends=".len()..])
} else {
None
}
});
let backend_name = debug_flags.iter().find_map(|x| x.strip_prefix("codegen-backend="));
get_codegen_backend(&None, backend_name).print_passes();
return None;
}