diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-01-30 17:50:50 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-01-30 17:51:55 -0500 |
| commit | 17c8f108a4d4c753e087e23ff5722718a6cd7a6a (patch) | |
| tree | ae936bd071b9675125d6d64b31aec5620d145cbd /lib/std/builtin.zig | |
| parent | 4d2fed62325d0ef7326c791ab4957154f7ba4c59 (diff) | |
| download | zig-17c8f108a4d4c753e087e23ff5722718a6cd7a6a.tar.gz zig-17c8f108a4d4c753e087e23ff5722718a6cd7a6a.zip | |
drop @newStackCall
this was causing unrelated behavior tests to fail.
if this commit is reverted, the docs are good, but `@newStackCall` is
already deprecated in favor of `@call`, supplying the `stack` property.
Diffstat (limited to 'lib/std/builtin.zig')
| -rw-r--r-- | lib/std/builtin.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index d8f24753d3..de2b800ea9 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -408,6 +408,8 @@ pub const Version = struct { /// therefore must be kept in sync with the compiler implementation. pub const CallOptions = struct { modifier: Modifier = .auto, + + /// Only valid when `Modifier` is `Modifier.async_kw`. stack: ?[]align(std.Target.stack_align) u8 = null, pub const Modifier = enum { |
