aboutsummaryrefslogtreecommitdiff
path: root/std/math/round.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-08-23 08:26:09 -0400
committerGitHub <noreply@github.com>2018-08-23 08:26:09 -0400
commit327482c3a41a30d5ea63eedd3bfb13553c8c2d00 (patch)
treeef668f8342632858ee20e6d9a05d9c93d8e5b704 /std/math/round.zig
parent68dcdf1c867a918aa0bb7b5c4cb42df185e1c8f9 (diff)
parent353419f82d3575dc45631750a8cf08aa4826ec4c (diff)
downloadzig-327482c3a41a30d5ea63eedd3bfb13553c8c2d00.tar.gz
zig-327482c3a41a30d5ea63eedd3bfb13553c8c2d00.zip
Merge pull request #1402 from ziglang/default-fp-ieee-strict
Default to strict IEEE floating point
Diffstat (limited to 'std/math/round.zig')
-rw-r--r--std/math/round.zig12
1 files changed, 2 insertions, 10 deletions
diff --git a/std/math/round.zig b/std/math/round.zig
index c8d9eb4fd4..4fe35365c8 100644
--- a/std/math/round.zig
+++ b/std/math/round.zig
@@ -35,11 +35,7 @@ fn round32(x_: f32) f32 {
return 0 * @bitCast(f32, u);
}
- {
- @setFloatMode(this, builtin.FloatMode.Strict);
- y = x + math.f32_toint - math.f32_toint - x;
- }
-
+ y = x + math.f32_toint - math.f32_toint - x;
if (y > 0.5) {
y = y + x - 1;
} else if (y <= -0.5) {
@@ -72,11 +68,7 @@ fn round64(x_: f64) f64 {
return 0 * @bitCast(f64, u);
}
- {
- @setFloatMode(this, builtin.FloatMode.Strict);
- y = x + math.f64_toint - math.f64_toint - x;
- }
-
+ y = x + math.f64_toint - math.f64_toint - x;
if (y > 0.5) {
y = y + x - 1;
} else if (y <= -0.5) {