From e538b984462264a7b64b9c9be11d2b9a7a68940a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 16 Jul 2007 14:37:41 +0000 Subject: [PATCH] Fix the documentation for llvm.sqrt so that sqrt(0) has defined behavior, which appears to be the intent. llvm-svn: 39922 --- docs/LangRef.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.