On 2012/12/03 01:52:01, Charlie Dorian wrote: > Dividing a floating point value or a complex ...
12 years, 4 months ago
(2012-12-03 09:19:45 UTC)
#3
On 2012/12/03 01:52:01, Charlie Dorian wrote:
> Dividing a floating point value or a complex value by zero should not be an
> error. It's a way to generate an infinity.
Quoting from the spec:
"If the divisor is a constant, it must not be zero. If the divisor is zero at
run time, a run-time panic occurs."
For constant expressions, the spec also says that a divisor must not be zero (gc
already implements this).
The spec also says:
"The result of a floating-point or complex division by zero is not specified
beyond the IEEE-754 standard; whether a run-time panic occurs is
implementation-specific."
So some ambiguity there. I'd like to hear from others as to what they think
about this change.
Issue 6845113: code review 6845113: cmd/gc: Error out on division by constant zero.
(Closed)
Created 12 years, 4 months ago by DMorsing
Modified 10 years, 10 months ago
Reviewers:
Base URL:
Comments: 4