diff options
author | Dan Gohman <gohman@apple.com> | 2007-07-16 14:37:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-07-16 14:37:41 +0000 |
commit | d6257fe581585f5061d1c672d2110c0cd26aa257 (patch) | |
tree | b249c0b1e8280274faed4a4ae04af48967a605cb /docs | |
parent | 07a96765daedf180a7102d39fe56c499878312b7 (diff) | |
download | external_llvm-d6257fe581585f5061d1c672d2110c0cd26aa257.zip external_llvm-d6257fe581585f5061d1c672d2110c0cd26aa257.tar.gz external_llvm-d6257fe581585f5061d1c672d2110c0cd26aa257.tar.bz2 |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 3b91cca..a57f242 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. <h5>Semantics:</h5> <p> -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. </p> </div> |