Skip to content

Commit a1c2c61

Browse files
authored
Rollup merge of rust-lang#143632 - dillona:ffi-param-names, r=jieyouxu
fix: correct parameter names in LLVMRustBuildMinNum and LLVMRustBuildMaxNum FFI declarations
2 parents fee2068 + 0455577 commit a1c2c61

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_codegen_llvm/src/llvm

1 file changed

+2
-2
lines changed

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,12 +1974,12 @@ unsafe extern "C" {
19741974
pub(crate) fn LLVMRustBuildMinNum<'a>(
19751975
B: &Builder<'a>,
19761976
LHS: &'a Value,
1977-
LHS: &'a Value,
1977+
RHS: &'a Value,
19781978
) -> &'a Value;
19791979
pub(crate) fn LLVMRustBuildMaxNum<'a>(
19801980
B: &Builder<'a>,
19811981
LHS: &'a Value,
1982-
LHS: &'a Value,
1982+
RHS: &'a Value,
19831983
) -> &'a Value;
19841984

19851985
// Atomic Operations

0 commit comments

Comments
 (0)