aboutsummaryrefslogtreecommitdiff
path: root/test/behavior
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-02-06 22:41:43 -0500
committerGitHub <noreply@github.com>2022-02-06 22:41:43 -0500
commit069dd01ce4ced3cb9664e4f1e09be753cb3ed476 (patch)
tree4e32e8efde362d928e204335d8582788d1355b35 /test/behavior
parent53e6c719efe5073307ee58436b17ee80f574b984 (diff)
parenteb82fdf96c3392ec9eabacbaa98c976f9ccd264e (diff)
downloadzig-069dd01ce4ced3cb9664e4f1e09be753cb3ed476.tar.gz
zig-069dd01ce4ced3cb9664e4f1e09be753cb3ed476.zip
Merge pull request #10740 from ziglang/stage2-float-arithmetic
stage2: add more float arithmetic and f80 support
Diffstat (limited to 'test/behavior')
-rw-r--r--test/behavior/math.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index 8f947e2829..a1243eb7c1 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -768,8 +768,6 @@ test "shift left/right on u0 operand" {
}
test "comptime float rem int" {
- if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO
-
comptime {
var x = @as(f32, 1) % 2;
try expect(x == 1.0);