Skip to content

Commit b454783

Browse files
committed
test: Disable @popCount 128bit integer for aarch64_be.
llvm/llvm-project#129843
1 parent 2edd008 commit b454783

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/behavior/popcount.zig

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ test "@popCount 128bit integer" {
1919
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
2020
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
2121
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
22+
if (builtin.zig_backend == .stage2_llvm and builtin.target.cpu.arch == .aarch64_be) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/129843
2223

2324
comptime {
2425
try expect(@popCount(@as(u128, 0b11111111000110001100010000100001000011000011100101010001)) == 24);

0 commit comments

Comments
 (0)