1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix some bswap typos that Chris noticed.

llvm-svn: 35564
This commit is contained in:
Reid Spencer 2007-04-02 00:19:52 +00:00
parent ac77daac29
commit 0df30afbef

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.