diff options
| author | bors <bors@rust-lang.org> | 2025-02-08 18:23:41 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-02-08 18:23:41 +0000 |
| commit | 73bf7947e9ab731bf2764db219cd9cda216a3aed (patch) | |
| tree | bd533b65c0b92f2e46215680eb85fc675b15cf40 /compiler/rustc_codegen_cranelift/src/compiler_builtins.rs | |
| parent | 8ad2c9724d983cfb116baab0bb800edd17f31644 (diff) | |
| parent | cac271fd388c0f6a4611ac240ba43fd941eeae21 (diff) | |
| download | rust-73bf7947e9ab731bf2764db219cd9cda216a3aed.tar.gz rust-73bf7947e9ab731bf2764db219cd9cda216a3aed.zip | |
Auto merge of #136715 - bjorn3:sync_cg_clif-2025-02-07, r=bjorn3
Subtree sync for rustc_codegen_cranelift The main highlights this time are a Cranelift update and a fix for a warning that the x87 feature is not enabled. r? `@ghost` `@rustbot` label +A-codegen +A-cranelift +T-compiler<!-- homu-ignore:start -->
Diffstat (limited to 'compiler/rustc_codegen_cranelift/src/compiler_builtins.rs')
| -rw-r--r-- | compiler/rustc_codegen_cranelift/src/compiler_builtins.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/compiler_builtins.rs b/compiler/rustc_codegen_cranelift/src/compiler_builtins.rs index 2484c10848e..bf16e81a06f 100644 --- a/compiler/rustc_codegen_cranelift/src/compiler_builtins.rs +++ b/compiler/rustc_codegen_cranelift/src/compiler_builtins.rs @@ -44,6 +44,7 @@ builtin_functions! { fn __umodti3(n: u128, d: u128) -> u128; fn __modti3(n: i128, d: i128) -> i128; fn __rust_u128_mulo(a: u128, b: u128, oflow: &mut i32) -> u128; + fn __rust_i128_mulo(a: i128, b: i128, oflow: &mut i32) -> i128; // floats fn __floattisf(i: i128) -> f32; |
