[PATCH] D29179: [Doc][LangRef] Fix typo-ish error in description of Masked Gather

Zvi Rackover via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 26 12:40:36 PST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL293206: [Doc][LangRef] Fix typo-ish error in description of Masked Gather (authored by zvi).

Changed prior to commit:
  https://reviews.llvm.org/D29179?vs=85908&id=85948#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D29179

Files:
  llvm/trunk/docs/LangRef.rst


Index: llvm/trunk/docs/LangRef.rst
===================================================================
--- llvm/trunk/docs/LangRef.rst
+++ llvm/trunk/docs/LangRef.rst
@@ -11831,7 +11831,7 @@
 
 ::
 
-       %res = call <4 x double> @llvm.masked.gather.v4f64 (<4 x double*> %ptrs, i32 8, <4 x i1>%mask, <4 x double> <true, true, true, true>)
+       %res = call <4 x double> @llvm.masked.gather.v4f64 (<4 x double*> %ptrs, i32 8, <4 x i1> <i1 true, i1 true, i1 true, i1 true>, <4 x double> undef)
 
        ;; The gather with all-true mask is equivalent to the following instruction sequence
        %ptr0 = extractelement <4 x double*> %ptrs, i32 0


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29179.85948.patch
Type: text/x-patch
Size: 649 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170126/0282fa24/attachment.bin>


More information about the llvm-commits mailing list