Remove support for the special 'fast' value for fpmath accuracy for the moment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154850 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 3a474a5..9989cc8 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3008,10 +3008,8 @@
<p><tt>fpmath</tt> metadata may be attached to any instruction of floating point
type. It can be used to express the maximum acceptable error in the result of
that instruction, in ULPs, thus potentially allowing the compiler to use a
- more efficient but less accurate method of computing it. The number of ULPs
- may also be the string <tt>"fast"</tt>, which tells the compiler that speed
- matters more than accuracy, so any fairly accurate method of computation is
- fine as long as it is quick. ULP is defined as follows:</p>
+ more efficient but less accurate method of computing it. ULP is defined as
+ follows:</p>
<blockquote>
@@ -3024,13 +3022,11 @@
</blockquote>
<p>The metadata node shall consist of a single positive floating point number
- representing the maximum relative error, or the string <tt>"fast"</tt>.
- For example:</p>
+ representing the maximum relative error, for example:</p>
<div class="doc_code">
<pre>
!0 = metadata !{ float 2.5 } ; maximum acceptable inaccuracy is 2.5 ULPs
-!1 = metadata !{ !metadata !"fast" } ; potentially unbounded inaccuracy
</pre>
</div>