Browse Source

fix typo in caller_conv arg name in ABIMachineSpec::gen_call; (#5259)

pull/5265/head
Denys Zadorozhnyi 2 years ago
committed by GitHub
parent
commit
d3692c2f2b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cranelift/codegen/src/machinst/abi.rs

2
cranelift/codegen/src/machinst/abi.rs

@ -564,7 +564,7 @@ pub trait ABIMachineSpec {
opcode: ir::Opcode, opcode: ir::Opcode,
tmp: Writable<Reg>, tmp: Writable<Reg>,
callee_conv: isa::CallConv, callee_conv: isa::CallConv,
callee_conv: isa::CallConv, caller_conv: isa::CallConv,
) -> SmallVec<[Self::I; 2]>; ) -> SmallVec<[Self::I; 2]>;
/// Generate a memcpy invocation. Used to set up struct /// Generate a memcpy invocation. Used to set up struct

Loading…
Cancel
Save