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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
cranelift/codegen/src/machinst/abi.rs
|
|
@ -564,7 +564,7 @@ pub trait ABIMachineSpec { |
|
|
|
opcode: ir::Opcode, |
|
|
|
tmp: Writable<Reg>, |
|
|
|
callee_conv: isa::CallConv, |
|
|
|
callee_conv: isa::CallConv, |
|
|
|
caller_conv: isa::CallConv, |
|
|
|
) -> SmallVec<[Self::I; 2]>; |
|
|
|
|
|
|
|
/// Generate a memcpy invocation. Used to set up struct
|
|
|
|