aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2012-04-10 08:22:43 +0000
committerDuncan Sands <baldrick@free.fr>2012-04-10 08:22:43 +0000
commit1fd63df6930a83d9d1378d2c68e19850c652078e (patch)
treea604adacb83bcc32a711f03f8e5dd862db6176c4 /docs
parentd9fc1ce8096f7138c60edc3a6655583bf209780e (diff)
downloadexternal_llvm-1fd63df6930a83d9d1378d2c68e19850c652078e.zip
external_llvm-1fd63df6930a83d9d1378d2c68e19850c652078e.tar.gz
external_llvm-1fd63df6930a83d9d1378d2c68e19850c652078e.tar.bz2
Express the number of ULPs in fpaccuracy metadata as a real rather than a
rational number, eg as 2.5 rather than 5, 2. OK'd by Peter Collingbourne. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154387 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index e6d47a6..4f6b137 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3021,13 +3021,13 @@ call void @llvm.dbg.value(metadata !24, i64 0, metadata !25)
</blockquote>
-<p>The maximum relative error may be any rational number. The metadata node
- shall consist of a pair of unsigned integers respectively representing
- the numerator and denominator. For example, 2.5 ULP:</p>
+<p>The metadata node shall consist of a single non-negative floating
+ point number representing the maximum relative error. For example,
+ 2.5 ULP:</p>
<div class="doc_code">
<pre>
-!0 = metadata !{ i32 5, i32 2 }
+!0 = metadata !{ float 2.5 }
</pre>
</div>