mirror of
https://github.com/ziglang/zig.git
synced 2026-02-14 05:20:34 +00:00
LLVM backend: disable failing aarch64 behavior test
This commit is contained in:
parent
91508e10ab
commit
774f9bdb79
@ -126,6 +126,13 @@ fn testOneCtz(comptime T: type, x: T) u32 {
|
||||
}
|
||||
|
||||
test "@ctz vectors" {
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .aarch64) {
|
||||
// TODO this is tripping an LLVM assert:
|
||||
// zig: /home/andy/Downloads/llvm-project-13/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp:198: llvm::LegalizeActionStep llvm::LegalizeRuleSet::apply(const llvm::LegalityQuery&) const: Assertion `mutationIsSane(Rule, Query, Mutation) && "legality mutation invalid for match"' failed.
|
||||
// I need to report a zig issue and an llvm issue
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
try testCtzVectors();
|
||||
comptime try testCtzVectors();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user