Fix some bswap typos that Chris noticed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-04-02 00:19:52 +00:00
parent fe35555d09
commit 543ab1d784

View File

@ -4438,13 +4438,13 @@ that includes the type for the result and the operand.
<pre>
declare i16 @llvm.bswap.i16.i16(i16 &lt;id&gt;)
declare i32 @llvm.bswap.i32.i32(i32 &lt;id&gt;)
declare i64 @llvm.bswap.i64.i32(i64 &lt;id&gt;)
declare i64 @llvm.bswap.i64.i64(i64 &lt;id&gt;)
</pre>
<h5>Overview:</h5>
<p>
The '<tt>llvm.bwsap</tt>' family of intrinsics is used to byteswap integer
The '<tt>llvm.bwsap</tt>' family of intrinsics is used to byte swap integer
values with an even number of bytes (positive multiple of 16 bits). These are
useful for performing operations on data that is not in the target's native
byte order.