| author | |
| committer | |
| log | c547a05b656118bef790478c26b439e07c858c76 |
| tree | 36242fa220c52666b10d6cbe5fd78e6677b00bea |
| parent | d6b4e1918b77e2992038d385d0951c7c926703a1 |
| signature |
https://github.com/ziglang/zig/issues/243041 files changed, 1 insertions(+), 1 deletions(-)
doc/langref/runtime_shrExact_overflow.zig+1-1| ... | ... | @@ -7,7 +7,7 @@ pub fn main() void { |
| 7 | 7 | const y = @shrExact(x, 2); |
| 8 | 8 | std.debug.print("value: {}\n", .{y}); |
| 9 | 9 | |
| 10 | if (builtin.cpu.arch.isRISCV() and builtin.zig_backend == .stage2_llvm) @panic("https://github.com/ziglang/zig/issues/24304"); | |
| 10 | if ((builtin.cpu.arch.isRISCV() or builtin.cpu.arch.isLoongArch()) and builtin.zig_backend == .stage2_llvm) @panic("https://github.com/ziglang/zig/issues/24304"); | |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | // exe=fail |