From 3806d81f86d205af958239a6acfdb0d8b9e46196 Mon Sep 17 00:00:00 2001 From: Yichao Yu Date: Wed, 23 Nov 2016 16:25:31 +0000 Subject: [PATCH] Fix doc of `llvm.bitreverse.iN` Summary: The return type is `iN` rather than always `i16` Seems to be a typo in https://reviews.llvm.org/rL252878 . Reviewers: jmolloy Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D27047 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287769 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/LangRef.rst b/docs/LangRef.rst index c5f927d92ef..33cf6adc4ee 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -10813,7 +10813,7 @@ bitpattern of an integer value; for example ``0b10110110`` becomes Semantics: """""""""" -The ``llvm.bitreverse.iN`` intrinsic returns an i16 value that has bit +The ``llvm.bitreverse.iN`` intrinsic returns an iN value that has bit ``M`` in the input moved to bit ``N-M`` in the output. '``llvm.bswap.*``' Intrinsics