[clang] [clang][CFG] Fix assertion failure in checkIncorrectLogicOperator (PR #142897)

Balazs Benics via cfe-commits cfe-commits at lists.llvm.org
Thu Jun 5 09:31:41 PDT 2025


================
@@ -0,0 +1,16 @@
+// RUN: %clang_cc1 -verify -Wunreachable-code %s
+
+// Previously this test will crash
+static void test(__fp16& x) {
+  if (x != 0 || x != 1.0) { // expected-note{{}}
----------------
steakhal wrote:

```suggestion
  if (x != 0 || x != 1.0) { // expected-note{{}} no-crash
```

https://github.com/llvm/llvm-project/pull/142897


More information about the cfe-commits mailing list