================
@@ -1619,14 +1619,18 @@ template <class Emitter>
 bool Compiler<Emitter>::VisitVectorBinOp(const BinaryOperator *E) {
   const Expr *LHS = E->getLHS();
   const Expr *RHS = E->getRHS();
+
+  QualType LHSTy = LHS->getType().getAtomicUnqualifiedType();
----------------
AaronBallman wrote:

Shouldn't we have already undergone rvalue conversion before getting here? I 
would have expected the atomic qualifier to already be stripped, array to 
pointer decay to have already happened, etc.

https://github.com/llvm/llvm-project/pull/199246
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to