Skip to content

Commit

Permalink
fix always_inline from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
bhansconnect committed Sep 29, 2023
1 parent 3a6ba3e commit 05f43c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/compiler/builtins/bitcode/src/dec.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ pub fn negateC(arg: RocDec) callconv(.C) i128 {
}

pub fn absC(arg: RocDec) callconv(.C) i128 {
const result = @call(.{ .modifier = always_inline }, RocDec.abs, .{arg}) catch @panic("TODO overflow for calling absolute value on RocDec");
const result = @call(.always_inline, RocDec.abs, .{arg}) catch @panic("TODO overflow for calling absolute value on RocDec");
return result.num;
}

Expand Down

0 comments on commit 05f43c5

Please sign in to comment.