aaron.ballman added inline comments.

================
Comment at: clang/lib/Sema/SemaChecking.cpp:2115
+
+    const auto *Arg = TheCall->getArg(0);
+    const VectorType *TyA = Arg->getType()->getAs<VectorType>();
----------------
Please spell out the type here (same below).


================
Comment at: clang/lib/Sema/SemaChecking.cpp:2116
+    const auto *Arg = TheCall->getArg(0);
+    const VectorType *TyA = Arg->getType()->getAs<VectorType>();
+    if (!TyA) {
----------------
No need to repeat the type name here (same below).


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D115231

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

Reply via email to