From e0f3110b854a476c16cce7b44472cd7838d344e9 Mon Sep 17 00:00:00 2001 From: aabhinavg Date: Mon, 17 Apr 2023 20:18:38 +0530 Subject: [PATCH] [docs][LangRef] Added minor update inside the `frem`. Fix : #61653 Added minor update inside the `frem`. Fix : #61653 Differential Revision: https://reviews.llvm.org/D146900 --- llvm/docs/LangRef.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 2c220a9..89ea451 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -9586,7 +9586,13 @@ Overview: """"""""" The '``frem``' instruction returns the remainder from the division of -its two operands. +its two operands. + +.. note:: + +The instruction is implemented as a call to libm's '``fmod``' +for some targets, and using the instruction may thus require linking libm. + Arguments: """""""""" -- 2.7.4