mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
test: Disable @prefetch behavior test for loongarch.
https://github.com/llvm/llvm-project/issues/134624
This commit is contained in:
parent
36b9e56753
commit
6880d2c4a3
1 changed files with 1 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ const std = @import("std");
|
|||
|
||||
test "@prefetch()" {
|
||||
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isLoongArch()) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/134624
|
||||
|
||||
var a: [2]u32 = .{ 42, 42 };
|
||||
var a_len = a.len;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue