diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2022-10-08 08:54:49 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2022-10-25 05:11:28 -0400 |
| commit | 6a4266d62aacf887a81549d81ae6f312992d2b2c (patch) | |
| tree | c06696c4224bebe1927779948441aed4f0808b39 /test/behavior/floatop.zig | |
| parent | 7c9a9a0fd4560d8ce5d61ab96b9403d27dd872b3 (diff) | |
| download | zig-6a4266d62aacf887a81549d81ae6f312992d2b2c.tar.gz zig-6a4266d62aacf887a81549d81ae6f312992d2b2c.zip | |
cbe: fix infinite recursion on recursive types
Diffstat (limited to 'test/behavior/floatop.zig')
| -rw-r--r-- | test/behavior/floatop.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig index a5eb25d4f5..3bb4ba9d0a 100644 --- a/test/behavior/floatop.zig +++ b/test/behavior/floatop.zig @@ -21,7 +21,6 @@ fn epsForType(comptime T: type) T { test "floating point comparisons" { if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO try testFloatComparisons(); @@ -91,7 +90,6 @@ fn testDifferentSizedFloatComparisons() !void { test "negative f128 floatToInt at compile-time" { if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
