tbaeder added inline comments.

================
Comment at: clang/lib/AST/Interp/ByteCodeExprGen.cpp:188-192
+    // == in C
+    if (const auto *BOP = dyn_cast<BinaryOperator>(SubExpr);
+        BOP && BOP->isEqualityOp())
+      return this->visit(SubExpr);
+    [[fallthrough]];
----------------
This is a tiny hack to get the C test working.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137706/new/

https://reviews.llvm.org/D137706

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to