Skip to content

Commit 8438616

Browse files
committed
Revert "Add f16/f128 handling in a couple places"
The f16/f128 handling introduced as part of rust-lang/rustc#125016 (Update compiler_builtins to 0.1.114) broke compilation on LoongArch and RISC-V: error: internal compiler error: compiler/rustc_codegen_llvm/src/abi.rs: 126:22: unsupported float: Reg { kind: Float, size: Size(2 bytes) } thread 'rustc' panicked at compiler/rustc_codegen_llvm/src/abi.rs:126:22: Box<dyn Any> This should be resolved with LLVM 19, but we are still on LLVM 18. Revert 99e6a28 as a temporary workaround. Ref: rust-lang#125016
1 parent 93896c7 commit 8438616

File tree

2 files changed

+0
-4
lines changed
  • compiler

2 files changed

+0
-4
lines changed

compiler/rustc_codegen_llvm/src/abi.rs

-2
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,8 @@ impl LlvmType for Reg {
120120
match self.kind {
121121
RegKind::Integer => cx.type_ix(self.size.bits()),
122122
RegKind::Float => match self.size.bits() {
123-
16 => cx.type_f16(),
124123
32 => cx.type_f32(),
125124
64 => cx.type_f64(),
126-
128 => cx.type_f128(),
127125
_ => bug!("unsupported float: {:?}", self),
128126
},
129127
RegKind::Vector => cx.type_vector(cx.type_i8(), self.size.bytes()),

compiler/rustc_target/src/abi/call/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,8 @@ impl Reg {
238238
_ => panic!("unsupported integer: {self:?}"),
239239
},
240240
RegKind::Float => match self.size.bits() {
241-
16 => dl.f16_align.abi,
242241
32 => dl.f32_align.abi,
243242
64 => dl.f64_align.abi,
244-
128 => dl.f128_align.abi,
245243
_ => panic!("unsupported float: {self:?}"),
246244
},
247245
RegKind::Vector => dl.vector_align(self.size).abi,

0 commit comments

Comments
 (0)