diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-11 22:03:00 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-07-16 10:23:02 -0700 |
| commit | fcafc63f3d5ce250e404871571aa3b26aeae6611 (patch) | |
| tree | 49e3354bb24dd1d8663127598e4f2f63942f2655 /src/Zcu/PerThread.zig | |
| parent | 6002514b72cb2a571abc6ac4ac7fbec44d6302b1 (diff) | |
| download | zig-fcafc63f3d5ce250e404871571aa3b26aeae6611.tar.gz zig-fcafc63f3d5ce250e404871571aa3b26aeae6611.zip | |
inline assembly: use types
until now these were stringly typed.
it's kinda obvious when you think about it.
Diffstat (limited to 'src/Zcu/PerThread.zig')
| -rw-r--r-- | src/Zcu/PerThread.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Zcu/PerThread.zig b/src/Zcu/PerThread.zig index 1be84d964f..dc2308add1 100644 --- a/src/Zcu/PerThread.zig +++ b/src/Zcu/PerThread.zig @@ -635,6 +635,7 @@ pub fn ensureMemoizedStateUpToDate(pt: Zcu.PerThread, stage: InternPool.Memoized .main => .Type, .panic => .panic, .va_list => .VaList, + .assembly => .assembly, }; if (zcu.builtin_decl_values.get(to_check) != .none) return; } |
