fix always_inline from rebase

This commit is contained in:
Brendan Hansknecht 2023-09-28 11:59:48 -07:00
parent 023f204af2
commit c18345d5ce
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

View file

@ -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;
}