[PATCH] D69891: [VP,Integer,#1] Vector-predicated integer intrinsics
Andy Kaylor via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 15:14:52 PST 2020
andrew.w.kaylor added inline comments.
================
Comment at: llvm/lib/IR/IntrinsicInst.cpp:276
+ auto VLConst = dyn_cast<ConstantInt>(VLParam);
+ if (VLConst && VLConst->getSExtValue() == -1)
+ return true;
----------------
Why are you doing this and not just "less than zero"?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69891/new/
https://reviews.llvm.org/D69891
More information about the llvm-commits
mailing list