[PATCH] D127976: [IR] Move vector.insert/vector.extract out of experimental namespace

Paul Walker via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 23 07:33:49 PDT 2022


paulwalker-arm accepted this revision.
paulwalker-arm added inline comments.


================
Comment at: llvm/docs/LangRef.rst:17282
+      declare <vscale x 4 x float> @llvm.vector.insert.nxv4f32.v4f32(<vscale x 4 x float> %vec, <4 x float> %subvec, i64 %idx)
+      declare <vscale x 2 x double> @llvm.vector.insert.nxv2f64.v2f64(<vscale x 2 x double> %vec, <2 x double> %subvec, i64 %idx)
+
----------------
For this and the other instances, please remove the `%` as idx must be a literal (as documented below) but using `%idx` makes it look like an arbitrary variable can be used.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D127976/new/

https://reviews.llvm.org/D127976



More information about the llvm-commits mailing list