diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2016-06-27 19:43:15 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2016-06-27 19:43:15 +0000 |
commit | 82f41518ed1e24cc1c4f27dc0f35923b76055a99 (patch) | |
tree | 96d00bab6a899aaf75f195a31de98a2cec7eaafc /llvm/docs/LangRef.rst | |
parent | 4168d758882fe25875503ff5660534e2656455af (diff) | |
download | bcm5719-llvm-82f41518ed1e24cc1c4f27dc0f35923b76055a99.tar.gz bcm5719-llvm-82f41518ed1e24cc1c4f27dc0f35923b76055a99.zip |
Verifier: Reject non-float !fpmath
Code already assumes this is float. getFPAccuracy()
crashes on any other type.
llvm-svn: 273912
Diffstat (limited to 'llvm/docs/LangRef.rst')
-rw-r--r-- | llvm/docs/LangRef.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 25bf9cccb09..201fbec9710 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -4510,8 +4510,8 @@ it. ULP is defined as follows: distance between the two non-equal finite floating-point numbers nearest ``x``. Moreover, ``ulp(NaN)`` is ``NaN``. -The metadata node shall consist of a single positive floating point -number representing the maximum relative error, for example: +The metadata node shall consist of a single positive float type number +representing the maximum relative error, for example: .. code-block:: llvm |