| author | |
| committer | |
| log | 74f40ddd11451707a046f2a8b0807a656f81b51c |
| tree | ffd03bd206b176cd322486ad479c31c4432d039d |
| parent | 8eee3928626f9469dbd5ca15127b836e48553bd3 |
| signature |
SPIR-V cannot print, so we cannot yet use the fancy default
panic handler. Instead we will just use the infinite loop
one for now.1 files changed, 2 insertions(+), 1 deletions(-)
lib/std/builtin.zig+2-1| ... | ... | @@ -741,7 +741,8 @@ pub fn default_panic(msg: []const u8, error_return_trace: ?*StackTrace, ret_addr |
| 741 | 741 | builtin.zig_backend == .stage2_x86_64 or |
| 742 | 742 | builtin.zig_backend == .stage2_x86 or |
| 743 | 743 | builtin.zig_backend == .stage2_riscv64 or |
| 744 | builtin.zig_backend == .stage2_sparc64) | |
| 744 | builtin.zig_backend == .stage2_sparc64 or | |
| 745 | builtin.zig_backend == .stage2_spirv64) | |
| 745 | 746 | { |
| 746 | 747 | while (true) { |
| 747 | 748 | @breakpoint(); |