mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-26 05:27:43 +00:00
Wrap long lines, fix verification error
llvm-svn: 27531
This commit is contained in:
parent
4b3a885a0f
commit
1729e9aa26
@ -585,7 +585,7 @@ a power of 2.</p>
|
||||
|
||||
<!-- ======================================================================= -->
|
||||
<div class="doc_subsection">
|
||||
<a name="moduleasm">Module-Level Inline Assembly</a></li>
|
||||
<a name="moduleasm">Module-Level Inline Assembly</a>
|
||||
</div>
|
||||
|
||||
<div class="doc_text">
|
||||
@ -2662,8 +2662,10 @@ operand may be undef if performing a shuffle from only one vector.
|
||||
<h5>Example:</h5>
|
||||
|
||||
<pre>
|
||||
%result = shufflevector <4 x int> %v1, <4 x int> %v2, <4 x uint> <uint 0, uint 4, uint 1, uint 5> <i>; yields <4 x int></i>
|
||||
%result = shufflevector <4 x int> %v1, <4 x int> undef, <4 x uint> <uint 0, uint 1, uint 2, uint 3> <i>; yields <4 x int></i> - Identity shuffle.
|
||||
%result = shufflevector <4 x int> %v1, <4 x int> %v2,
|
||||
<4 x uint> <uint 0, uint 4, uint 1, uint 5> <i>; yields <4 x int></i>
|
||||
%result = shufflevector <4 x int> %v1, <4 x int> undef,
|
||||
<4 x uint> <uint 0, uint 1, uint 2, uint 3> <i>; yields <4 x int></i> - Identity shuffle.
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user