fix: correct parameter names in LLVMRustBuildMinNum and LLVMRustBuildMaxNum FFI declarations
This commit is contained in:
parent
45b80ac21a
commit
0455577974
1 changed files with 2 additions and 2 deletions
|
|
@ -1980,12 +1980,12 @@ unsafe extern "C" {
|
|||
pub(crate) fn LLVMRustBuildMinNum<'a>(
|
||||
B: &Builder<'a>,
|
||||
LHS: &'a Value,
|
||||
LHS: &'a Value,
|
||||
RHS: &'a Value,
|
||||
) -> &'a Value;
|
||||
pub(crate) fn LLVMRustBuildMaxNum<'a>(
|
||||
B: &Builder<'a>,
|
||||
LHS: &'a Value,
|
||||
LHS: &'a Value,
|
||||
RHS: &'a Value,
|
||||
) -> &'a Value;
|
||||
|
||||
// Atomic Operations
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue