diff options
| author | David Rubin <daviru007@icloud.com> | 2024-07-05 23:00:55 -0700 |
|---|---|---|
| committer | David Rubin <daviru007@icloud.com> | 2024-07-26 04:05:40 -0700 |
| commit | c78ebeb44ce078a165e3302b629432eeee6a656d (patch) | |
| tree | a32c31f2c88173a0a5589f323359922b93aaf402 /lib/std | |
| parent | 93e9c7a963a86f72cd7f603ee7e6d6af2ff3b0b5 (diff) | |
| download | zig-c78ebeb44ce078a165e3302b629432eeee6a656d.tar.gz zig-c78ebeb44ce078a165e3302b629432eeee6a656d.zip | |
riscv: implement `ptr_slice_ptr_ptr`
just one step closer to allocation
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/builtin.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index a600f055df..86f8da6cd4 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -776,6 +776,7 @@ pub fn default_panic(msg: []const u8, error_return_trace: ?*StackTrace, ret_addr if (builtin.zig_backend == .stage2_riscv64) { std.debug.print("panic: {s}\n", .{msg}); + @breakpoint(); std.posix.exit(127); } |
