From 985d66c081a3da2a5a29023f6e361eb0930d818e Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Thu, 10 Jul 2014 03:22:16 +0000 Subject: [PATCH] Fix types in documentation. The examples were using f32, but the IR type is called float git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212675 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/LangRef.rst b/docs/LangRef.rst index 9886128b77d..cc9656a7bfa 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -8651,7 +8651,7 @@ Syntax: :: - declare i16 @llvm.convert.to.fp16(f32 %a) + declare i16 @llvm.convert.to.fp16(float %a) Overview: """"""""" @@ -8679,7 +8679,7 @@ Examples: .. code-block:: llvm - %res = call i16 @llvm.convert.to.fp16(f32 %a) + %res = call i16 @llvm.convert.to.fp16(float %a) store i16 %res, i16* @x, align 2 .. _int_convert_from_fp16: @@ -8692,7 +8692,7 @@ Syntax: :: - declare f32 @llvm.convert.from.fp16(i16 %a) + declare float @llvm.convert.from.fp16(i16 %a) Overview: """"""""" @@ -8721,7 +8721,7 @@ Examples: .. code-block:: llvm %a = load i16* @x, align 2 - %res = call f32 @llvm.convert.from.fp16(i16 %a) + %res = call float @llvm.convert.from.fp16(i16 %a) Debugger Intrinsics -------------------