From: Dan Gohman Date: Mon, 16 Jul 2007 14:37:41 +0000 (+0000) Subject: Fix the documentation for llvm.sqrt so that sqrt(0) has defined behavior, X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d6257fe581585f5061d1c672d2110c0cd26aa257;p=oota-llvm.git Fix the documentation for llvm.sqrt so that sqrt(0) has defined behavior, which appears to be the intent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39922 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 3b91ccad8c5..a57f2426059 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -4477,7 +4477,7 @@ The argument and return value are floating point numbers of the same type.
Semantics:

-This function returns the sqrt of the specified operand if it is a positive +This function returns the sqrt of the specified operand if it is a nonnegative floating point number.