diff options
| author | Meghan <hello@nektro.net> | 2022-07-24 01:56:33 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-24 11:56:33 +0300 |
| commit | dea437edfb124b8a4cf4f2e09330ef4282991cc9 (patch) | |
| tree | cff1a5c5f9b89c4f8f94def8006f7d07f9757dbc /src/Module.zig | |
| parent | 903bed931dddc8b3f7ad1fa87e57eca13375dd32 (diff) | |
| download | zig-dea437edfb124b8a4cf4f2e09330ef4282991cc9.tar.gz zig-dea437edfb124b8a4cf4f2e09330ef4282991cc9.zip | |
stage2: implement `noinline fn`
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig index 8f7c42b542..fd97e5c948 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -1488,7 +1488,7 @@ pub const Fn = struct { branch_quota: u32, state: Analysis, is_cold: bool = false, - is_noinline: bool = false, + is_noinline: bool, calls_or_awaits_errorable_fn: bool = false, /// Any inferred error sets that this function owns, both its own inferred error set and |
