From 543ab1d7845be3f49a86997229b69ee531729411 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 2 Apr 2007 00:19:52 +0000 Subject: [PATCH] Fix some bswap typos that Chris noticed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35564 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 45352cc4eb5..19a82edef03 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -4438,13 +4438,13 @@ that includes the type for the result and the operand.
   declare i16 @llvm.bswap.i16.i16(i16 <id>)
   declare i32 @llvm.bswap.i32.i32(i32 <id>)
-  declare i64 @llvm.bswap.i64.i32(i64 <id>)
+  declare i64 @llvm.bswap.i64.i64(i64 <id>)
 
Overview:

-The 'llvm.bwsap' family of intrinsics is used to byteswap integer +The 'llvm.bwsap' 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. -- 2.34.1