aboutsummaryrefslogtreecommitdiff
path: root/test/behavior
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-10-02 04:07:14 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2024-10-02 04:08:24 +0200
commit354ea625e5d9adcdac3c015f1eccf14c694ec03f (patch)
treef572b5d41126f66e3dcd78ad46d38f8de302164b /test/behavior
parent3b465ebec59ee942b6c490ada2f81902ec047d7f (diff)
downloadzig-354ea625e5d9adcdac3c015f1eccf14c694ec03f.tar.gz
zig-354ea625e5d9adcdac3c015f1eccf14c694ec03f.zip
test: Re-enable "bitcast nan float does not modify signaling bit" for LLVM + arm.
This now passes on all targets that we test in CI. See: https://github.com/ziglang/zig/issues/14366
Diffstat (limited to 'test/behavior')
-rw-r--r--test/behavior/bitcast.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/bitcast.zig b/test/behavior/bitcast.zig
index 32ea5a62e6..2ef97c8310 100644
--- a/test/behavior/bitcast.zig
+++ b/test/behavior/bitcast.zig
@@ -429,9 +429,6 @@ test "bitcast nan float does not modify signaling bit" {
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
- // TODO: https://github.com/ziglang/zig/issues/14366
- if (builtin.zig_backend == .stage2_llvm and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
-
const snan_u16: u16 = 0x7D00;
const snan_u32: u32 = 0x7FA00000;
const snan_u64: u64 = 0x7FF4000000000000;