Skip to content

Commit

Permalink
Rollup merge of #122179 - heiher:fix-typo, r=lcnr
Browse files Browse the repository at this point in the history
rustc: Fix typo
  • Loading branch information
matthiaskrgr authored Mar 8, 2024
2 parents af3d06c + c2f13db commit 9fd60c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_codegen_ssa/src/back/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ pub(crate) fn create_object_file(sess: &Session) -> Option<write::Object<'static
"ilp32s" | "lp64s" => e_flags |= elf::EF_LARCH_ABI_SOFT_FLOAT,
"ilp32f" | "lp64f" => e_flags |= elf::EF_LARCH_ABI_SINGLE_FLOAT,
"ilp32d" | "lp64d" => e_flags |= elf::EF_LARCH_ABI_DOUBLE_FLOAT,
_ => bug!("unknown RISC-V ABI name"),
_ => bug!("unknown LoongArch ABI name"),
}

e_flags
Expand Down

0 comments on commit 9fd60c5

Please sign in to comment.