summaryrefslogtreecommitdiff
path: root/docs/LangRef.html
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-02 00:19:52 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-02 00:19:52 +0000
commit543ab1d7845be3f49a86997229b69ee531729411 (patch)
treee62a8be21ca779d65cbe7619e5797061b0492d9e /docs/LangRef.html
parentfe35555d09ecdad4b42da1138a1d40ea4b83898e (diff)
downloadllvm-543ab1d7845be3f49a86997229b69ee531729411.tar.gz
llvm-543ab1d7845be3f49a86997229b69ee531729411.tar.bz2
llvm-543ab1d7845be3f49a86997229b69ee531729411.tar.xz
Fix some bswap typos that Chris noticed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r--docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 45352cc4eb..19a82edef0 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -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.