forked from OSchip/llvm-project
[Doc][LangRef] Fix typo-ish error in description of Masked Gather
Summary: Fix the example of equivalent expansion for when mask is all ones. Reviewers: delena Reviewed By: delena Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29179 llvm-svn: 293206
This commit is contained in:
parent
0ca3f64c4d
commit
b26530cd69
|
|
@ -11831,7 +11831,7 @@ The semantics of this operation are equivalent to a sequence of conditional scal
|
|||
|
||||
::
|
||||
|
||||
%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
|
||||
|
|
|
|||
Loading…
Reference in New Issue