Skip to content

Commit

Permalink
Add missing entry to builtin_functions
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Jan 9, 2025
1 parent fdd0b06 commit 443659d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/compiler_builtins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) -> (u128, bool);
fn __rust_i128_mulo(a: i128, b: i128) -> (i128, bool);

// floats
fn __floattisf(i: i128) -> f32;
Expand Down

0 comments on commit 443659d

Please sign in to comment.