[PATCH] D50507: [CodeGen][ARM] Coerce FP16 vectors to integer vectors when needed

Eli Friedman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 10 12:53:59 PDT 2018


efriedma added inline comments.


================
Comment at: lib/CodeGen/TargetInfo.cpp:5788
+          llvm::Type *Ty = llvm::ArrayType::get(NewVecTy, Members);
+          return ABIArgInfo::getDirect(Ty, 0, nullptr, false);
+        }
----------------
Do we need equivalent code in classifyReturnType?


https://reviews.llvm.org/D50507





More information about the cfe-commits mailing list