[PATCH] D25866: [Sema] Support implicit scalar to vector conversions

Akira Hatanaka via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 21 09:28:20 PDT 2016


ahatanak added inline comments.


================
Comment at: lib/Sema/SemaExpr.cpp:8044
   // the vector element type and splat.
-  // FIXME: this should also work for regular vector types as supported in GCC.
-  if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) {
+  if (!RHSVecType && isa<VectorType>(LHSVecType)) {
     if (!tryVectorConvertAndSplat(*this, &RHS, RHSType,
----------------
Is this the same as "!RHSVecType && LHSVecType" in this context?


https://reviews.llvm.org/D25866





More information about the cfe-commits mailing list