[clang] [clang][bytecode] Implement comparsion operators for vector type (PR #107258)

via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 5 06:04:34 PDT 2024


================
@@ -1222,6 +1224,117 @@ bool Compiler<Emitter>::VisitComplexBinOp(const BinaryOperator *E) {
   return true;
 }
 
+template <class Emitter>
+bool Compiler<Emitter>::VisitVectorBinOp(const BinaryOperator *E) {
+  assert(E->getType()->isVectorType());
----------------
yronglin wrote:

Done.

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


More information about the cfe-commits mailing list