diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-01-17 21:55:49 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-01-17 21:55:49 -0700 |
| commit | 4d05f2ae5f7b79f8abb4aa07d846a46470ffdb1a (patch) | |
| tree | 930c4dc2aa77d420fd66917136cb1c0e2514f2e6 /lib/std/builtin.zig | |
| parent | 84c2c47fae82e913286a2306d8947252ae3a42f7 (diff) | |
| download | zig-4d05f2ae5f7b79f8abb4aa07d846a46470ffdb1a.tar.gz zig-4d05f2ae5f7b79f8abb4aa07d846a46470ffdb1a.zip | |
remove `zig_is_stage2` from `@import("builtin")`
Instead use the standarized option for communicating the
zig compiler backend at comptime, which is `zig_backend`. This was
introduced in commit 1c24ef0d0b09a12a1fe98056f2fc04de78a82df3.
Diffstat (limited to 'lib/std/builtin.zig')
| -rw-r--r-- | lib/std/builtin.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index c94651a92d..ba5801e936 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -753,7 +753,7 @@ pub fn default_panic(msg: []const u8, error_return_trace: ?*StackTrace) noreturn @setCold(true); // Until self-hosted catches up with stage1 language features, we have a simpler // default panic function: - if (builtin.zig_is_stage2) { + if (builtin.zig_backend != .stage1) { while (true) { @breakpoint(); } |
