Skip to content

Commit

Permalink
Unrolled build for rust-lang#122179
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#122179 - heiher:fix-typo, r=lcnr

rustc: Fix typo
  • Loading branch information
rust-timer authored Mar 8, 2024
2 parents 74acabe + c2f13db commit de1b194
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 de1b194

Please sign in to comment.