From fe0bbcc24ae2d0916135a8f7553ee46c9b463b44 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 12 Dec 2018 17:27:26 +0100 Subject: logic/pipeline: oops, fix identity under disjunction --- logic/pipeline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'logic') diff --git a/logic/pipeline.cpp b/logic/pipeline.cpp index a2aaa9f3..cfff7680 100644 --- a/logic/pipeline.cpp +++ b/logic/pipeline.cpp @@ -233,7 +233,7 @@ template static cc_noinline bool maybe_nan(const char* text, const char* fun, int line, const xs&... vals) { - bool ret = (is_nan(vals) || ... || true); + bool ret = (is_nan(vals) || ... || false); if (ret) emit_nan_check_msg(text, fun, line); -- cgit v1.2.3