[llvm] [AArch64][GISel] Support SVE with 128-bit min-size for G_LOAD and G_STORE (PR #92130)

Madhur Amilkanthwar via llvm-commits llvm-commits at lists.llvm.org
Wed May 15 07:55:32 PDT 2024


================
@@ -1413,7 +1413,7 @@ bool IRTranslator::translateLoad(const User &U, MachineIRBuilder &MIRBuilder) {
 
 bool IRTranslator::translateStore(const User &U, MachineIRBuilder &MIRBuilder) {
   const StoreInst &SI = cast<StoreInst>(U);
-  if (DL->getTypeStoreSize(SI.getValueOperand()->getType()) == 0)
+  if (DL->getTypeStoreSize(SI.getValueOperand()->getType()).isZero())
----------------
madhur13490 wrote:

This seems unrelated change. Isn't it?

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


More information about the llvm-commits mailing list