[PATCH] D133494: [AArch64] Lower extending uitofp using tbl.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 16 02:23:37 PDT 2022
fhahn marked an inline comment as done.
fhahn added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:13277-13282
+ FixedVectorType::get(
+ Builder.getIntNTy(
+ I->getType()->getScalarType()->getScalarSizeInBits()),
+ cast<FixedVectorType>(I->getType())
+ ->getElementCount()
+ .getKnownMinValue())));
----------------
t.p.northover wrote:
> Isn't this just `DstTy->getInteger()`?
Thanks I missed that in the earlier update. Fixed in the committed version.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133494/new/
https://reviews.llvm.org/D133494
More information about the llvm-commits
mailing list