| author | |
| committer | |
| log | 166766d63def58c1fe8e7c9e30b2cdf183092dec |
| tree | dbf886a0bddef9307201d8cd333d08c3deb4d690 |
| parent | 7415739e36cf16574b754dda5ce03c0026b6907c |
| signature |
1 files changed, 2 insertions(+), 2 deletions(-)
src/codegen/llvm.zig+2-2| ... | ... | @@ -5191,8 +5191,8 @@ pub const FuncGen = struct { |
| 5191 | 5191 | } |
| 5192 | 5192 | |
| 5193 | 5193 | switch (modifier) { |
| 5194 | .auto, .never_tail, .always_tail => {}, | |
| 5195 | .never_inline => try attributes.addFnAttr(.@"noinline", &o.builder), | |
| 5194 | .auto, .always_tail => {}, | |
| 5195 | .never_tail, .never_inline => try attributes.addFnAttr(.@"noinline", &o.builder), | |
| 5196 | 5196 | .async_kw, .no_async, .always_inline, .compile_time => unreachable, |
| 5197 | 5197 | } |
| 5198 | 5198 |