diff options
author | Simon Moll <simon.moll@emea.nec.com> | 2022-03-02 10:16:07 +0100 |
---|---|---|
committer | Simon Moll <simon.moll@emea.nec.com> | 2022-03-02 10:16:19 +0100 |
commit | d05ddb86f6cb24d0d152db65f419006929a42f61 (patch) | |
tree | 490d7ff83267b4036d037bcd09758616500386da /llvm/lib/IR/IntrinsicInst.cpp | |
parent | febf54812969dba981bd54b242986d55e920482a (diff) | |
download | llvm-d05ddb86f6cb24d0d152db65f419006929a42f61.zip llvm-d05ddb86f6cb24d0d152db65f419006929a42f61.tar.gz llvm-d05ddb86f6cb24d0d152db65f419006929a42f61.tar.bz2 |
[VP] vp.sitofp cast intrinsic and docs
Reviewed By: frasercrmck
Differential Revision: https://reviews.llvm.org/D119922
Diffstat (limited to 'llvm/lib/IR/IntrinsicInst.cpp')
-rw-r--r-- | llvm/lib/IR/IntrinsicInst.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/IR/IntrinsicInst.cpp b/llvm/lib/IR/IntrinsicInst.cpp index f217ccf..bfcc732 100644 --- a/llvm/lib/IR/IntrinsicInst.cpp +++ b/llvm/lib/IR/IntrinsicInst.cpp @@ -493,6 +493,7 @@ Function *VPIntrinsic::getDeclarationForParams(Module *M, Intrinsic::ID VPID, break; } case Intrinsic::vp_fptosi: + case Intrinsic::vp_sitofp: VPFunc = Intrinsic::getDeclaration(M, VPID, {ReturnType, Params[0]->getType()}); break; |