mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Remove duplicate binary condition. Fixes #4668.
This commit is contained in:
parent
ecddaeae66
commit
527bf72d42
|
@ -342,7 +342,7 @@ void hwf_manager::minimum(hwf const & x, hwf const & y, hwf & o) {
|
|||
_mm_store_sd(&o.value, _mm_min_sd(_mm_set_sd(x.value), _mm_set_sd(y.value)));
|
||||
#else
|
||||
// use __min ?
|
||||
if (is_nan(x) || is_nan(x))
|
||||
if (is_nan(x))
|
||||
o.value = y.value;
|
||||
else if (is_nan(y))
|
||||
o.value = x.value;
|
||||
|
|
Loading…
Reference in a new issue