[PATCH] D80313: [SVE] Eliminate calls to default-false VectorType::get() from CodeGen

Cullen Rhodes via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 29 07:02:00 PDT 2020


c-rhodes added inline comments.


================
Comment at: llvm/lib/CodeGen/ValueTypes.cpp:332-337
-  case MVT::nxv2bf16:
-    return VectorType::get(Type::getBFloatTy(Context), 2, /*Scalable=*/ true);
-  case MVT::nxv4bf16:
-    return VectorType::get(Type::getBFloatTy(Context), 4, /*Scalable=*/ true);
-  case MVT::nxv8bf16:
-    return VectorType::get(Type::getBFloatTy(Context), 8, /*Scalable=*/ true);
----------------
I think you removed these by mistake when rebasing, causing test failures


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D80313





More information about the llvm-commits mailing list