[PATCH] D103898: [VP] Vector predicated vector splice intrinsic

Fraser Cormack via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 13 09:44:30 PDT 2021


frasercrmck added inline comments.


================
Comment at: llvm/docs/LangRef.rst:18616
+Effectively, this intrinsic concatenates ``vec1[0..evl1-1]`` and
+``vec2[0..evl2-1]`` and creates the result vector by selectng the elements in a
+window of size ``evl2``, starting at index ``imm`` (for a positive immediate) of
----------------
typo: `selectng`


================
Comment at: llvm/docs/LangRef.rst:18619
+the concatenated vector. Elements in the result vector beyond ``evl2`` are
+undef.  If ``imm`` is negative the starting index is ``evl1 + imm``.  The result
+vector of active vector length ``evl2`` contains ``evl1 - imm`` (``-imm`` for
----------------
I think `undef` is generally back-ticked in this document


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

https://reviews.llvm.org/D103898



More information about the llvm-commits mailing list