#Zig bloated stdout inline while
1 messages · Page 1 of 1 (latest)
print is being inlined
There's a couple of ways you can solve that
- you can write a
noinline fnand call it from yourinline while - you can use
@callwith.{ .modifier = .never_inline }
i can't use print without being inline?
You can, by forcing it to not inline using @call