Auto merge of #114673 - matthiaskrgr:rollup-9kroqpp, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #110435 (rustdoc-json: Add test for field ordering.) - #111891 (feat: `riscv-interrupt-{m,s}` calling conventions) - #114377 (test_get_dbpath_for_term(): handle non-utf8 paths (fix FIXME)) - #114469 (Detect method not found on arbitrary self type with different mutability) - #114587 (Convert Const to Allocation in smir) - #114670 (Don't use `type_of` to determine if item has intrinsic shim) Failed merges: - #114599 (Add impl trait declarations to SMIR) r? `@ghost` `@rustbot` modify labels: rollup
This commit is contained in:
commit
0777ae620b
@ -48,7 +48,9 @@ pub(crate) fn conv_to_call_conv(sess: &Session, c: Conv, default_call_conv: Call
|
|||||||
default_call_conv
|
default_call_conv
|
||||||
}
|
}
|
||||||
|
|
||||||
Conv::X86Intr => sess.fatal("x86-interrupt call conv not yet implemented"),
|
Conv::X86Intr | Conv::RiscvInterrupt { .. } => {
|
||||||
|
sess.fatal(format!("interrupt call conv {c:?} not yet implemented"))
|
||||||
|
}
|
||||||
|
|
||||||
Conv::ArmAapcs => sess.fatal("aapcs call conv not yet implemented"),
|
Conv::ArmAapcs => sess.fatal("aapcs call conv not yet implemented"),
|
||||||
Conv::CCmseNonSecureCall => {
|
Conv::CCmseNonSecureCall => {
|
||||||
|
Loading…
Reference in New Issue
Block a user