[llvm] [docs] Fix llround typo in LangRef (PR #111426)

Johan Engelen via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 7 12:49:22 PDT 2024


https://github.com/JohanEngelen created https://github.com/llvm/llvm-project/pull/111426

None

>From ba97ed35f8d38b993ecf68957a594bd4a3cfd79d Mon Sep 17 00:00:00 2001
From: Johan Engelen <jbc.engelen at gmail.com>
Date: Mon, 7 Oct 2024 21:48:30 +0200
Subject: [PATCH] [docs] Fix llround typo in LangRef

---
 llvm/docs/LangRef.rst | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 5527e4a8818a55..0c7279de06cd68 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -17027,11 +17027,11 @@ floating-point type. Not all targets support all types however.
 
 ::
 
-      declare i64 @llvm.lround.i64.f32(float %Val)
-      declare i64 @llvm.lround.i64.f64(double %Val)
-      declare i64 @llvm.lround.i64.f80(float %Val)
-      declare i64 @llvm.lround.i64.f128(double %Val)
-      declare i64 @llvm.lround.i64.ppcf128(double %Val)
+      declare i64 @llvm.llround.i64.f32(float %Val)
+      declare i64 @llvm.llround.i64.f64(double %Val)
+      declare i64 @llvm.llround.i64.f80(float %Val)
+      declare i64 @llvm.llround.i64.f128(double %Val)
+      declare i64 @llvm.llround.i64.ppcf128(double %Val)
 
 Overview:
 """""""""



More information about the llvm-commits mailing list