| Server IP : 77.37.55.20 / Your IP : 216.73.217.143 Web Server : LiteSpeed System : Linux lt-bnk-web922.main-hosting.eu 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : u970350538 ( 970350538) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/golang/1.22.0/src/cmd/compile/internal/test/ |
Upload File : |
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package test
import "testing"
var f52want float64 = 1.0 / (1 << 52)
var f53want float64 = 1.0 / (1 << 53)
func TestTruncFlt(t *testing.T) {
const f52 = 1 + 1.0/(1<<52)
const f53 = 1 + 1.0/(1<<53)
if got := f52 - 1; got != f52want {
t.Errorf("f52-1 = %g, want %g", got, f52want)
}
if got := float64(f52) - 1; got != f52want {
t.Errorf("float64(f52)-1 = %g, want %g", got, f52want)
}
if got := f53 - 1; got != f53want {
t.Errorf("f53-1 = %g, want %g", got, f53want)
}
if got := float64(f53) - 1; got != 0 {
t.Errorf("float64(f53)-1 = %g, want 0", got)
}
}
func TestTruncCmplx(t *testing.T) {
const r52 = complex(1+1.0/(1<<52), 0)
const r53 = complex(1+1.0/(1<<53), 0)
if got := real(r52 - 1); got != f52want {
t.Errorf("real(r52-1) = %g, want %g", got, f52want)
}
if got := real(complex128(r52) - 1); got != f52want {
t.Errorf("real(complex128(r52)-1) = %g, want %g", got, f52want)
}
if got := real(r53 - 1); got != f53want {
t.Errorf("real(r53-1) = %g, want %g", got, f53want)
}
if got := real(complex128(r53) - 1); got != 0 {
t.Errorf("real(complex128(r53)-1) = %g, want 0", got)
}
const i52 = complex(0, 1+1.0/(1<<52))
const i53 = complex(0, 1+1.0/(1<<53))
if got := imag(i52 - 1i); got != f52want {
t.Errorf("imag(i52-1i) = %g, want %g", got, f52want)
}
if got := imag(complex128(i52) - 1i); got != f52want {
t.Errorf("imag(complex128(i52)-1i) = %g, want %g", got, f52want)
}
if got := imag(i53 - 1i); got != f53want {
t.Errorf("imag(i53-1i) = %g, want %g", got, f53want)
}
if got := imag(complex128(i53) - 1i); got != 0 {
t.Errorf("imag(complex128(i53)-1i) = %g, want 0", got)
}
}