Commit 166766d63d
Changed files (1)
src
codegen
src/codegen/llvm.zig
@@ -5191,8 +5191,8 @@ pub const FuncGen = struct {
}
switch (modifier) {
- .auto, .never_tail, .always_tail => {},
- .never_inline => try attributes.addFnAttr(.@"noinline", &o.builder),
+ .auto, .always_tail => {},
+ .never_tail, .never_inline => try attributes.addFnAttr(.@"noinline", &o.builder),
.async_kw, .no_async, .always_inline, .compile_time => unreachable,
}